@font-face {
    font-family: SourGummy;
    src: url(/fonts/SourGummy/SourGummy-VariableFont_wdth\,wght.ttf);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.home-about-box {
    width: 100%;
    height: auto;
    margin-top: 100px;
    padding: 50px;
}

.home-about-box h1 {
    display: flex;
    font-size: 2.5rem;
    color: black;
    justify-content: center;
    text-align: center;
    font-weight: 200;
    animation: fadeIn 2s;
}

.home-photos {
    display: flex;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 10px auto;
    animation: fadeIn 2.5s;
}

.home-photos img {
    width: 500px;
    max-width: 95%;
    object-fit: cover;
    object-position: bottom;
    margin: 15px;
    border-radius: 15px;
    border: solid 10px #534025;
}

.home-services {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
}

.home-services h2 {
    font-size: 30px;
    font-weight: 200;
    color: black;
    text-align: center;
    margin-bottom: 4vh;
}

.home-services a {
    font-size: 2rem;
    color: black;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.home-services a:hover {
    color: #959569;
}

.gallery-button {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.gallery-button button {
    margin: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #233117;
    color: white;
    font-size: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.gallery-button a {
    color: white;
    text-decoration: none;
}

@media screen and (min-width: 1080px) {
    .mobile-logo {
        display: none;
    }
}

@media screen and (max-width: 1080px) {
    .mobile-logo {
        display: flex;
        height: auto;
        justify-content: center;
        align-items: center;
        margin-top: 5vh;
    }

    .mobile-logo img {
        width: 30vh;
    }

    .home-about-box {
        margin-top: 2vh;
    }
}