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

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



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

h2{
    font-size: 52px;
    font-family: sans-serif;
    font-weight: 400;
    text-align: center;
}
.destaque {
    background-color: rgb(7, 7, 6);
    color: white;
    padding: 10px;
    transition: 5s;
}
.destaque:hover{
    padding: 10px 150px;
    background-color:darkgreen;
    color:black;
}
img{
    height: 500px;

}   