/* reset css */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    background-color: darkslategrey;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: 128px;
    font-family: sans-serif;
}
h2{
    text-align: center;
    font-size: 48px;
    font-family: sans-serif;
    font-weight: 600;
}
.destaque{
    background-color: tomato;
    color: white;
    padding: 8px 32px;
    border-radius: 20px;
    transition: 2s;
}
.social img{
    width: 100px;
    transition: 4s;
}
.social:hover{
    padding: 8px 20px;
    background-color: antiquewhite;
}
.social{
    background-color: tomato;
    display: flex;
    justify-content: space-between;
    margin: 40px;
    border-radius: 25px;    
    padding: 1px 2px;
    transition: 2s;
}
main{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
