


.titulo{
  font-size: 60px;
 text-align: center;
 font-family: "Bungee Spice", sans-serif;
 font-weight: 400;
 font-style: normal;
 
}


.header{
    width: 100%;
    max-height: fit-content;
    padding: 1rem;
}




.menu{
        width: 100%;
        margin: auto ;

        font-family: "Poetsen One", sans-serif;
        font-weight: 400;
        font-style: normal;
 font-size: xx-large;
        border-style: solid;
        background-color: skyblue;
}




.menu_list{display: flex;
    flex-direction: row;
    justify-content: space-around;
};

.menu_list li{
    list-style-type: none;
    

        font-family: "Poetsen One", sans-serif;
        font-weight: 400;
        font-style: normal; 
}
.boton {
    min-width: 130px;
    height: 60px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    z-index: 0;
    background:lightgray;
    overflow: hidden;
    border: 2px solid white;
    color: black;
    border-radius: 20%;
  }
  .boton:hover {
    color: wheat;
  }
  .boton:hover:after {
    width: 100%;
  }
  .boton:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: lightblue;
  }


    