html {
    background-color: #f4f4f4;
}

body {
    font-family: ivymode, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 7vw;
    letter-spacing: -1px;
    line-height: 1.3;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: #212121;
    text-decoration: line-through;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.ssid {
    position: relative;
    color: #212121;
    white-space: nowrap;
    padding-left: 25px;
    border-left: 5px solid;
    animation-name: fade;
    animation-duration: 4s;
}

#overlay {
    position: fixed;
    display: none;
    font-weight: 200;
    letter-spacing: 0.3px;
    background-color: rgba(244, 244, 244,0.95);
    width: 100;
    height: 100;
    z-index: 99;
    padding: 10px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 3.2vw;
}

.gradient {
   background: -moz-linear-gradient(left, rgba(244,244,244,0) 0%, rgba(244,244,244,1) 85%, rgba(244,244,244,1) 100%);
    background: -webkit-linear-gradient(left, rgba(244,244,244,0) 0%,rgba(244,244,244,1) 85%,rgba(244,244,244,1) 100%);
    background: linear-gradient(to right, rgba(244,244,244,0) 0%,rgba(244,244,244,1) 85%,rgba(244,244,244,1) 100%);
    height: 100%;
    width: 100px;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 98;
}

.logo {
    z-index: 50;
    position: fixed;
    right: 20vw;
    bottom: 30vh;
    width: 20%;
    cursor: pointer;
    -webkit-transition: opacity 0.7s;
    transition: opacity 0.7s;
    animation-name: fade;
    animation-duration: 4s;
    animation-delay: 2s;
    animation-fill-mode: backwards;
}

.logo:hover {
    opacity: 0.7;
}

/* ANIMATIONS */

@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* SMALL SCREENS */

@media screen and (max-width: 600px) {
    body {
        font-size: 12vw;
    }
    
    #overlay {
        font-size: 5.5vw;
    }
    
    .ssid {
        padding-left: 15px;
        border-left: 3px solid;
    }
    
    .logo {
        width: 40%;
        bottom: 10vh;
        right: 15vw;
    }
}
