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

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

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

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

.destaque{
    background-color: white;
    color: rgb(6, 66, 248);
    padding: 2px 5px;
    transition: 3s;
}

.destaque:hover{
    padding: 10px 48px;
}

img{
    width: 150px;
}
div{
    display: flex;
    background-color: black;
    justify-content:center;
    gap: 30px;
}
main{
    display: flex;
    flex-direction:column;
    gap: 32px;
}
