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

body{
    background-image:linear-gradient(45deg,rgb(255, 183, 0),purple);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

h1{
    font-size: 128px;
    font-family: sans-serif;
    font-weight: 500;
}

h2{
    font-size: 48px;
    font-family: sans-serif;
    font-weight: 100;
    text-align: center;
}
.destaque{
    background-color: black ;
    color:white;
    padding: 12px 32px;
    transition: 1s;
    border-radius: 70%;
}
.destaque:hover{
    background-color: rgb(255, 0, 13);
}
.social-conteiner img{
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.social-conteiner{
    display: flex;
    justify-content: center;
    gap: 100px;
}