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;
}

p {
    text-align: left;
    padding-left: 15px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 70%;
    color: azure;
    margin: auto;
}

.desc {
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    margin: auto;
    box-sizing: content-box;
    width: 70%;
    height: auto;
}

.desc p {
    font-size: 1.1em;
}

.designs {
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    margin: auto;
    box-sizing: content-box;
    width: 70%;
    height: auto;
}

.pics {
    width: 100%;
}

@media screen and (max-width: 800px) {
    .desc {
        width: 90%;
    }

    .desc p {
        font-size: 1em;
    }
}