body {
    background: linear-gradient(to bottom, white, lightblue);
}

/* moves the image to the middle*/
.image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 40%;
    border-radius: 25px;
}

/*moves the paragraph to the middle*/
.desc {
    margin: 2vw;
    text-align:center;
    font-size: 20px;
}

/*sets margin and alignment for the heading*/   
.head {
    padding-top: 2vw;
    text-align: center;
    margin: 2vw;
}

/*change the background color of the elements in the div*/
.back {
    border: 1px white solid;
    display: block;
    background-color: white;
}

.back2 {
    border: 1px white solid;
    display: block;
    background-color: lightblue;
}