/* Desktop */
@media (min-width: 800px) {
    .screen {
        position: absolute;
        right: -100vw;
        transition: all 1s ease;
        width: 100%;
    }

    .nav {
        position: absolute;
        top: 0;
        height: 160px;
        width: 100%;
        background-color: white;
        border-bottom: solid 4px var(--blue);
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        padding-left: 10%;
        padding-right: 10%;
        z-index: 1;
    }

    .nav a {
        text-decoration: none;
        color: black;
        height: 50%;
        width: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        position: relative;
    }

    .nav a:last-of-type {
        font-size: 1.2vw;
        font-weight: 900;
    }

    .nav a:last-of-type:hover {
        animation: DataLectro var(--navSpeed) var(--borderDelay) forwards;
    }

    .nav a::before,
    .nav a::after {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        width: 2%;
        background: black;
        opacity: 0;
    }

    .nav a::before {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav a::after {
        bottom: 50%;
        transform: translateY(50%);
    }

    .nav a:hover:last-of-type::before {
        animation: navBorderTop var(--navSpeed) forwards;
    }

    .nav a:hover:last-of-type::after {
        animation: navBorderBottom var(--navSpeed) forwards;
    }

    .nav .a i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8vw;
    }

    .nav a:hover i {
        animation: navIcon var(--navSpeed) forwards;
    }

    .nav .a p {
        position: absolute;
        bottom: 50%;
        transform: translateY(50%);
        font-size: 1vw;
        opacity: 0;
    }

    .nav a:hover p {
        animation: navText var(--navSpeed) forwards;
    }

    .scroll {
        position: absolute;
        top: 160px;
        display: block;
        overflow-y: hidden;
        scroll-behavior: smooth;
        height: calc(100vh - 160px);
        width: 100%;
    }

    section {
        height: calc(100vh - 160px);
    }
}

/* Phone */
@media (max-width: 800px) {
    
}