h1{
  font-family: "Lugrasimo", cursive;
  font-weight: 400;
  font-style: normal; 
  font-size: xx-large; 
  text-align: center;
  margin-top: 200px;
}
h3{
font-family: "Gabarito", sans-serif;
 font-optical-sizing: auto;
  font-weight: 600;
  font-size: x-large;
  font-style: normal;
}

/*BACKGROUND GRADIENT*/
body{
    background-image:linear-gradient(to top, #6AB547, #74cae7) ;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/*LINKS*/
a{
    display: block;
    margin-bottom: 20px;
    text-align: center;
    color: rgb(5, 82, 5);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover{
    color: rgb(184, 236, 161);
    text-decoration: underline;
}

