body {
    font-family: Baskervville, serif;
    background: rgb(16,24,32);
    background: linear-gradient(180deg, rgba(16,24,32,1) 0%, rgba(4,88,136,1) 50%, rgba(0,161,251,1) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.h1 {
    text-align: center;
    color: white;
    font-size: 3em;
}

a {
    color: white;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 70%;
    color: azure;
    margin: auto;
}

.desc {
    border-radius: 25px;
    overflow: hidden;
    margin: auto;
    box-sizing: content-box;
    width: 70%;
    height: auto;
}

.desc h2, .desc p {
    text-align: left;
}

.desc h2 {
    font-size: 1.6rem;
}

.desc p {
    font-size: 1.2em;
}

#require {
    color: rgba(222, 0, 0, 0.633);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .desc {
        width: 100%;
    }

    .desc p {
        font-size: 15px;
    }
}