/*reset css */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
body{
    height: 100vh;
    background-color:pink;
    display: flex;
    justify-content: center;
    align-items: center
    ;
}
main{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
h1{
    font-size: 128px;
    font-family: sans-serif;
    color: white;
}
h2{
    text-align: center;
    font-size: 48px;
    font-family: sans-serif;
    font-weight: 100;
    color: white;
}
.destaque{
    background-color: white;
    color: pink;
    padding: 8px 32px;
    transition: 0.5s;
}
.destaque:hover{
    padding: 8px 148px;
    
}
.social-container {
    display: flex;
    justify-content: space-between;
}
.social-container img {
    width: 100px;
}