#menu{
    background: #E4E0D7;
    padding: 20px 0;
    text-align: center;
}

#menu a{
    text-decoration: none;
    padding: 10px;
    margin: 10px;
    background: #fff;
    border-radius: 10px;
    font-size: 20px;
    color: #000;
}

#menu a:hover{
    transition: .5s;
    background: rgb(122, 178, 76);
}



    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .overlay.open {
      visibility: visible;
      opacity: 1;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      cursor: pointer;
    }

    #formContainer {
      margin-top: 20px;
    }

hr{
        width: 90%;
    position: absolute;
    right: 50%;
    transform: translate(50%,-50%);
}