*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.page-index{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    background-color: black;
}

.page-area-index{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.logo-area{
    width: 250px;
    height: 250px;    
}

.img{
    width: 100%;
    border-radius: 500px;
    border: 4px solid #fff;
}

.rede-social-area{
    width: 100%;
    display: flex;
    justify-content: space-around;
}



.rede-social-area div{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #fff;
}

.rede-social-area a{
    color: #fff;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.insta{
    background: linear-gradient(purple,yellow);    
}

.face{
    background: blue;
}

.whats{
    background: rgb(3, 196, 3);
}