article{
    width: 480px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px grey;
    margin-left: auto;
    margin-right: auto; 
}
.art{
    margin: 50px;
}
h1{
    text-align: center;
    font-size: xx-large;
}
p{
    text-align: justify;
    font-size: larger;
}
.row{
    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;
}
main{
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}
header{ 
    display: flex;
    align-items: center;
    gap: 20px;
}
a{
    font-weight: bold;
    color: black;
}
a:first-child{
    font-size: larger;
    margin-right: auto;
}
.container{
    display: flex;
    flex-wrap: wrap;
}
.contained{
    flex: auto;
    box-sizing: border-box;
    text-align: justify;
}
footer{
    text-align: center;
    font-weight: bold;
}
