@font-face {
    font-family: 'Zen Kaku Gothic Antique';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/zen-kaku-gothic-antique-v17-latin-regular.woff2') format('woff2');
}


body{
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
}
::-webkit-scrollbar {
    width: .6em;
}
::-webkit-scrollbar-track {
    background: white;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.max-content{
    max-width: 64em;
}

.navbar{
    height: 1.5em;
    font-size: .9em;
}
.nav-link{
    margin-right:2vw;
    margin-left:2vw;
    transition: all 0.2s;
    position: relative;
}
.nav-link::after{
    content: '';
    opacity: 0;
    transition: all 0.2s;
    height: .0625em;
    width: 100%;
    background-color: black;
    position: absolute;
    bottom: 1em;
    left: 0;
}
.nav-link:hover::after{
    opacity: 1;
}

#logo{
    max-width: 16em;
}
.small-font{
    font-size: .9em;
}

#disclaimer{
    font-size: .6em;
}
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    
}
.fade-in-visible {
    opacity: 1;
}

#carousel{
    max-width: 37.5em;
    margin: auto;
}
#contact{
    max-width: 54em;
}

footer{
    font-size: .75em;
}