:root{
    --text-shadow-color: rgb(87, 87, 87,.2);
}
* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
     text-shadow:   -1px 1px 0 var(--text-shadow-color),
                    1px 1px 0 var(--text-shadow-color),
                    1px -1px 0 var(--text-shadow-color),
                    -1px -1px 0 var(--text-shadow-color);
}


body{
    margin: 0px;
    color:white;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
}

.section-title{
    font-size: 3em;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
}

.section{
    width:100%;
    max-width: 1500px;
    padding: min(11%,110px);
    margin:0 auto;
}

.nav-to{
    position: absolute;
    top:-25vh;
}

.fade-in{
    animation-name: fade-in;
    animation-duration: 3s;
}

@keyframes fade-in {
    from {
        font-size: 2em;
        filter:blur(10px)
    }
    to {
        font-size: 1em;
        filter:blur(0px)
    }
}

iframe{
    border:none;
}

a{
    color: inherit;
    font-weight: bold;
}