/* Custom Stylesheet */

body {
    font-family: "Noto Sans", sans-serif;
        scroll-snap-type: y mandatory;
        overflow-y: scroll;
}

#about {
    scroll-snap-align: start;
    /* Add other styles as needed */
}

.navbar {
    background-color: black;
}
.default-section {
    position: relative;
    background-image: url("/static/img/site/backevos.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 80vh;
    min-width: 100vh;
}

.header-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 8rem 0.5rem;
    font-family: "Noto Sans", sans-serif;
    animation:tracking-in-expand .6s cubic-bezier(.215,.61,.355,1.000) both
}

@keyframes tracking-in-expand{0%{letter-spacing:-.5em;opacity:0}40%{opacity:.6}100%{opacity:1}}

.header-text h1 {
    font-size: 1.7rem;
}
.logo {
    padding: 0.5rem 1rem;
}

.nav .nav-link {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}