* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

#root {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* LANDING PAGE */

/* .letter:hover {
    animation: bounce 500ms 1 normal ease-in-out;
}

@keyframes bounce {
    25% {
        transform: scale(1.4,0.6);
    }
    50% {
        transform: scale(0.9,1.2) translateY(-40px);
    }
    75% {
        transform: scale(1.2,0.8);
    }
} */

/* CUBE ANIMATION*/

.zero {
    transform: translateZ(250px);
}

.one {
    transform: translateZ(-250px);
}

.two {
    transform: translateY(250px) rotateX(90deg);
}

.three {
    transform: translateY(-250px) rotateX(90deg);
}

.four {
    transform: translateX(250px) rotateY(90deg);
}

.five {
    transform: translateX(-250px) rotateY(90deg);
}



/* SKILLS */

#skillset {
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: space-evenly;
    align-items: center;

    background-color: #374045;
}

.skillSvg {
    font-size: 5rem;
}