.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9998;
  
    align-items: center;
    justify-content: center;
  }
  
  .menu-container {
    width: fit-content;
    margin-left: 200px;
    padding: 20px;
    padding-top: 1px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }
  
  .menu-container h1{
    align-self: center;
  }
  