*{
    padding: 0;
    margin: 0;
    text-decoration: none;
}

@font-face {
    font-family: "Cormorant";
    src: url("/assets/fonts/cormorant.ttf");
}

@font-face {
    font-family: "REM";
    src: url("/assets/fonts/REM.ttf");
}

body{
    background: rgb(229,230,228);
    background: linear-gradient(135deg, rgba(229,230,228,1) 15%, rgba(229,230,228,1) 52%, rgba(236,237,235,1) 76%, rgba(243,243,242,1) 88%, rgba(255,255,255,1) 100%);
    overflow: hidden;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

p, a, span, button {
    font-family: 'Rem', sans-serif;
}


.gallery-section{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20vh;
    margin-bottom: 10vh;
}

.title{
    font-size: 40px;
    font-weight: bold;
}

.subtitle{
    font-size: 20px;
    color: #A9A9A9;
    font-weight: normal;
}

.gallery-boxes{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.gallery-box{
    width: 22%;
    padding-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
    margin-top: 50px;
}

.gallery-image{
    width: 100%;
    height: 220px;
    cursor: pointer;
    border-radius: 10px;
    object-fit: cover;
}

.room-name{
    margin-top: 10px;
    font-size: 20px;
}

.room-description{
    font-size: 14px;
    color: #A9A9A9;
    width: 90%;
}

.gallery-image-big{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 102;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    user-select: none;
}

.image-div{
    width: 50%;
    height: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
}

.image-part-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-part{
    height: 100%;
}

.roomNamePart{
    margin-top: 40px;
    font-size: 20px;
    color: black;
}

.roomDescriptionPart{
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.top-part{
    float: right;
    margin-bottom: 10px;
}

.close-button{
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.close-button:hover{
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1200px) {

    .gallery-boxes{
        display: block;
    }

    .gallery-box{
        width: 100%;
    }

    .image-div{
        width: 70%;
        height: auto;
    }

    .roomNamePart{
        color: white;
        margin-top: 20px;

    }

    .roomDescriptionPart{
        color: rgba(255, 255, 255, 0.8);
    }
}
