@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url(./footer.css);
html {
    font-family: "GFS Didot";
    font-size: 1.25rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(./img/Sprinkle.svg);
}

a {
    text-decoration: none;
    color: #313131;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.navbarContainer {
    display: flex;
    justify-content: end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 4px 16px 4px 16px;
    z-index: 1;
}

.navbar-scroll {
    transition: background 100ms ease-in-out;
    background: white;
    display: flex;
    justify-content: end;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    padding: 4px 16px 4px 16px;
    z-index: 1;
    box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.75);
}

.navbar-scroll .navmenu a {
    color: #313131;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.navmenu a {
    color: white;
    margin-right: 24px;
}

.navmenu a:hover {
    color: #ffc107;
}

.dropdown {
    display: none;
    border: none;
    background-color: white;
    margin-right: 90px;
}

.dropdown:hover {
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 2px;
    background-color: black;
    margin: 6px 0;
}

.bar1,
.bar2,
.bar3 {
    transition: transform 0.5s, opacity 0.25s;
}

video {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: relative;
    z-index: -1;
}

.video-container {
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.overlay-img {
    margin-right: 50px;
}

.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-family: "Lobster", cursive;
    color: white;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 3rem;
}

.bttm-home {
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 70%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    gap: 3rem;
}

.box {
    display: flex;
    background: white;
}

.imgbox {
    width: 500px;
    height: 500px;
}

.imgbox img {
    height: 100%;
    margin: auto;
}

.boxtext {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    margin: 3rem;
}

@media (min-width: 769px) {
    .navmenu {
        display: block !important;
    }
}

@media (max-width: 1024px) {
    .boxtext {
        font-size: 0.825rem;
        margin: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbarContainer {
        background-color: white
    }
    .navmenu {
        margin: 0;
        width: 50%;
        background-color: white;
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 78px;
        right: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .navmenu a {
        color: black;
        margin: 6px 0;
    }
    .dropdown {
        display: block;
        margin-left: 60%;
    }
    .overlay {
        font-size: 2rem;
    }
    .overlay-img {
        width: 30%;
        height: auto;
        margin-right: 20px;
    }
    .box {
        flex-direction: column;
        align-items: center;
    }
    .imgbox {
        width: inherit;
    }
    .imgbox img {
        width: 100%;
    }
    .boxtext {
        font-size: 1rem;
    }
}

@media (max-width: 425px) {
    .imgbox {
        height: 350px;
    }
}

@media (max-width: 375px) {
    .overlay {
        font-size: 1.5rem;
        flex-direction: column;
    }
    .overlay-img {
        width: 30%;
        height: auto;
        margin-right: 20px;
    }
}