*{
    font-family: 'Roboto Mono', monospace;
    font-size: x-large;
  }


  .title{
    display: flex;
    justify-content: center;
    font-size: xx-large;
  }


  .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    padding-top: 20%;

 
    
  }


  .contact {
    position:absolute;
    top:1%;
    width:100%;
    height:20px;
    font-size: small;
 }

ul, li {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
    float: right;
}



  
  a {
    display: block;
    color: black;
    text-align: center;
    padding: 0px 14px;
   
    text-decoration: none;
  }






  button {
    position: relative;
    font-weight: 600;
    height: 45px;
    padding: 12px 20px;
    outline: none;
    border: 1px solid black;
    background-color: transparent;
    border-radius: 5px;
    margin-right: 50px;
  }
  
  button:after {
    content: "";
    position: absolute;
    width: 100%;
    top: 7px;
    left: 7px;
    height: 100%;
    background-color: rgb(201, 184, 246);
    z-index: -1;
    transition: all 0.35s;
    border-radius: inherit;
  }
  
  button:hover:after {
    top: 0px;
    left: 0px;
  }