*{
    font-family: 'Open Sans', sans-serif;
}
article{
    width: 480px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px grey;
    margin-left: auto;
    margin-right: auto; 
}
main{
    margin: 50px;
}
h1{
    text-align: center;
    font-size: xx-large;
}
p{
    text-align: justify;
    font-size: larger;
}
div{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
button{
    width: 380px;
    height: 50px;
    background-color: lightgreen;
    box-shadow: 0px 0px 10px grey;
    border-radius: 10px;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: large;
    color: white;
}
.round{
    height: 150px;
    width: 150px;
    border: 5px solid white;
    border-radius: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto; 
    box-shadow: 0px 0px 10px grey;
}
.gradient{
    background-image: linear-gradient(125deg, rgb(20, 40, 145), 
    rgb(205,55,150));
    height: 130px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: -130px;
}
