html {
    color: white;
    background-color: black;
    font-size: 1vw;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    margin: 0;
}

.homePage {
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
}

.homeLeft {
    display: inline-flex;
    flex-direction: column;
    width: 50vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.homeRight {
    display: inline-flex;
    width: 50vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.typedJS {
    font-size: 8rem;
    font-weight: 300;
}

#smallAbout {
    font-size: 1.7rem;
    color: #7644C3;
    margin: 0;
    max-width: 80%;
    text-align: center;
}

ul li {
    list-style-type: none;
    display: flex;
    margin-top: 3vh;
}

#nav1, #nav2, #nav3 {
    text-decoration: none;
    font-size: 5rem;
    font-weight: 100;
    transition: .2s;
    color: white;
}

#nav1:hover, #nav2:hover, #nav3:hover {
    color: #7644C3;
    transform: scale(1.1);
}

.notVisitedAnimationP {
    opacity: 0;
    animation: fadein 2s 3.2s forwards;
}

.visitedAnimationP {
    opacity: 0;
    animation: fadein 1.9s 0.2s forwards;
}

.visitedAnimation {
    opacity: 0;
    animation: fadein 2s 0.3s forwards;
}

.notVisitedAnimation {
    opacity: 0;
    animation: fadein 2s 3.3s forwards;
}

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