body {
    margin: 0;
    padding: 0;
    background-image: url('assets/images/bg-2000x1500.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.nav{
    display: flex;
    /* background-color: white; */
    opacity: 0.9;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 95px;
}

.pes-logo{
    margin-top: 20px;
    width: 70px;
}

.logo-text{
    margin-top: 60px;
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #06076d;
}


.cover {
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
    min-height: 100vh;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}


.btn:hover {
    cursor: pointer;
    background-color: #222e4e;
}

.btn {
    background-color: #475577;
    color: white;
    font-size: 22px;
    width: 300px;
    height: 70px;
    border-radius: 150px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 150px;
}

.run-proj-icon {
    width: 35px;
}

.completed-proj-icon {
    width: 60px;
}

.completed-btn-font {
    margin-left: -5px;
}

.btn, nav {
    animation-name: downtoup;
    animation-duration: 0.5s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-direction: normal;
    /* animation-iteration-count: 2; */
    /* animation: downtoup 2s ease-in 1s 2 alternate; */
}

@keyframes downtoup {
    from {
        opacity: 0.1;
        transform: translateY(200px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }

    0% {
        /* transform: translateY(0); */
    }

    20% {}

    50% {}

    70% {}

    100% {}
}



/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {

    body {
        background-position: center top;
        background-size: cover;
    }

    .cover {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        text-align: center;
    }

    .nav {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 5px;
    }

    .pes-logo {
        width: 100px;
        margin-top: -90px;
    }

    .logo-text {
        margin-top: 10px;
        font-size: 18px;
        text-align: center;
        /* padding: 0 10px; */
    }

    .btn {
        width: 110%;
        max-width: 380px;
        height: 55px;
        font-size: 15px;
        margin-bottom: 40px;
    }

    .completed-proj-icon {
        width: 35px;
    }

    .run-proj-icon {
        width: 28px;
    }
}
