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

body {
   background-color: greenyellow;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
}


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



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

h2{
    font-size: 48px;
    font-family: sans-serif;
    font-weight: 200;
    text-align: center;
}

.destaque{
    background-color: black;
    color: #fff;
    padding: 6px 30px;
    transition: 1s;

}

.destaque:hover{
    padding: 6px 70px;
    background-color: rgb(255, 137, 74);
    
}

.social-container{
     display: flex;
     justify-content: center;
     gap: 20px;

}

.social-container img{
    width: 70px;
}