*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans";
}

main{
    width: 100vw;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: url(../img/roda-rico.jfif) no-repeat center;
    background-size: cover;
    border: red solid 1px; */
}

p{
    color: rgb(85, 85, 85);
}

.social{
    display: flex;
    flex-direction: column;
}

.social>a{
    text-decoration: none;
}

.social img{
    width: 35px;
    margin-right: 10px;
}

.foto>img{
    border-radius: 50%;
    padding: .5rem;
    border: rgb(255, 124, 17) solid 3px;
}

.social>div, .contato{
    display: flex;
    align-items: center;
    padding: 1rem .5rem;
    margin-bottom: 15px;
    border: rgb(161, 161, 161) solid 1px;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .30);
    background-color: white;
    transition: .6s;
    cursor: pointer;
}

.social>div:hover, a>div:hover{
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .30);
    border: rgb(255, 124, 17) solid 1px;
}

.slogan{
    margin-bottom: 15px;
}