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

a{
    text-decoration: none;
}
/*fim reset*/

body{
    height: 100vh;
    background-color: bisque;
    display: flex;
    justify-content: center;
    align-items: center;
}
main{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
h1{
    font-size: 128px;
    font-family: sans-serif;
}
h2{
    text-align: center;
    font-size: 48px;
    font-family: sans-serif;
    font-weight: 100px;
}
.destaque{
    background-color:blueviolet;
    color: aqua;
    padding: 8px 16px;
    transition: 1s;
}
.destaque:hover{
    padding: 8px 148px;
}
.social-container img {
    width: 100px;
}
.social-container {
    display: flex;
    justify-content:space-between ;
}