
  .container {
    display: flex;
    justify-content: space-around;
    width: 60%;
  }
  
  .logo {
    width: 100px;
    cursor: pointer;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    background-color: #1f4167d3;
    width: 100%;
    height: 100vh;
    transition: 0.3s ease;
  }
  
  .modal-content {
    max-width: 70%;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  }
  
  .close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    margin: 40px;
    cursor: pointer;
  }

  .close img {
    margin: 15px;
    height: 21px;
    width: 21px;
  }
  

  @media (max-width: 800px) {
    .modal-content{
        max-width: 90%;
    }

    .close {
      margin: 25px;
    }
  }



  @media (max-width: 480px) {
    .modal-content{
        max-width: 90%;
    }
    .close {
        width: 40px;
        height: 40px;
        margin: 25px;
      }
    
      .close img {
        margin: 11px;
        height: 17px;
        width: 17px;
      }
  }

  @media (max-width: 400px) {
    .close {
        width: 40px;
        height: 40px;
        margin: 15px;
      }
  }