body {
    background: #000;
}

body a {
    text-decoration: none;
}

/* Project Section */
.projectdesc {
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    background-size: 300% 300%;
    background-image: linear-gradient(-50deg, #041A49, #062974, #020f2b);
    animation: colors 10s ease-in-out infinite;
}

@keyframes colors {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.description {
    margin-top: 55px;
    display: flex;
    justify-content: space-evenly;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 20px;
    color: white;
}

.text h1 {
    text-align: center;
    font-weight: 900;
}

.text p {
    width: 20em;
    text-align: justify;
}

.text ul li {
    width: 20em;
}

.divreturn {
    text-align: center;
}

.divreturn > a {
    background: #000;
    color: #FFF;
    padding: .6rem 1.5rem;
    border-radius: .5em;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 5rem;
    transition: .5s all ease-in-out;
}

.divreturn > a:hover {
    background: #FFF;
    color: #000;
    font-weight: bold;
}

@media screen and (max-width:600px) {

/* Project Section */
.projectdesc {
    max-height: auto;
}

.description {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
}

.description iframe {
    max-width: 426px;
    max-height: 240px;
}

.text {
    font-size: 16px;
    margin-bottom: 1.5em
}

.divreturn > a {
    font-size: 16px;
}

}