@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;500;600;700&display=swap");


* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Poppins', sans-serif;
    background-image: url("./background.png");
    background-size: cover;
}

body {
    padding: 0 8%;
}

h2 {
    font-size: 3.2rem;
    text-transform: uppercase;
    padding: 24px 0;
    color: white;
}

.Gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.Gallery img {
    max-width: 298px;
    max-height: 224px;
    margin: 2px;
}

.Gallery img:hover {
    cursor: pointer;
    filter:  brightness(70%);
}

#FullImageView {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

#FullImage {
    
    max-width: 100%;
    max-height: 100%;
}

#CloseButton {
    position: absolute;
    top: 20px;
    right: 80px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.bookNOW-btn {
    position: absolute;
    bottom: 40%;
    left: 10px;

}



