*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
a{
    text-decoration: none;
    color: inherit;
}
ul, ol, li{
    list-style: none;
}
.quadrados{
    height: 100px;
    width: 200vw;
    background-color: blanchedalmond;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.quadrados div{
    width: 180px;
    height: 360px;
    background-color: aqua;
    border: 2.5px slategray;

}
.circulos {
    width: 100px;
    height: 100px;
    background-color: deeppink;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50%;
}
.circulos div{
    width: 100px;
    height: 100px;
    background-color: darkorange;
    border: 2.5px slategrey;
    border-radius: 50%;
}