/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
*{
  
}


body{
    background-color: rgb(14, 107, 53);
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*fonte*/
    font-family: "Underdog", system-ui;
     font-weight: 400;
    font-style: normal;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}
  
 /* Estilho do cabeçalho */

header{
    padding: 40px 4%;
}

header > .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a{
    color: aquamarine;
    display: inline-block;/*trasfomação*/
    transition: 2;
}

head a:hover{
    color: blue;
    transform: scale(2);
    /*não ta funcionado*/
}

header nav ul{
    list-style-type: none;
}
header nav ul li{
    display: inline-block;
    padding: 0 40px;
}

header .btn-contato button{
    padding: 10px 40px;
    font-size: 18px;
    cursor: pointer;
}

header .btn-contato button:hover{
    box-shadow: 0px 0px 8px;
}