body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('../images/image-moun.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
  }

  /* nav start */
  nav {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid; */
    background: gray;
    clip-path: blur(30px);
    width: 100%;
    height: 70px;
}

nav ul {
    width: 100%;
    /* border: 1px solid aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

nav ul li {
    margin: 0 10px; 
}

nav ul li a {
    text-decoration: none;
    color: white;
    /* border: 1px solid; */
    padding: 10px;
    margin: 0;
}

.right, .left, .middle {
    /* border: 1px solid white; */
    padding: 10px;
    margin: 0;
    display: flex;
    justify-content: center;
}

.sideMenu {
    height: 70px;
    width: 100%;
    background: gray;
    position: relative;
    display: none;
}

.sideMenu button {
    position: absolute;
    right: 0;
    height: 100%;
    width: 55px;
    background: transparent;
    border: none;
}

.sideMenu button img {
    width: 100%;
    height: 50%;
}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: white;
    padding: 0 15px;
}

.menu {
    display: none;
    padding-top: 5%;
}

.menu a {
    background: transparent;
    color: black;
    font-size: 1.2em;
    border: none;
    text-decoration: none;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.menu button:nth-child(1){
    margin-top: 20%;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}
  /* nav end */
  
  .contact-container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 10%;
  }
  
  h1 {
    margin-bottom: 20px;
    color: #fff;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    color: #fff;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: border-color 0.3s;
    font-size: 1em;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    animation: pulse 1s infinite;
  }
  
  .contact-form button {
    font-size: 1.1em;
    padding: 20px 5px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #0056b3;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
    50% {
      box-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
    }
  }

  @media only screen and (max-width: 767px) {
    nav {
        display: none;
    }

    .sideMenu {
        display: block;
        height: 55px;
    }

    .displayMenu{
        display: flex;
    }

    .menu {
        position: absolute;
        z-index: 10;
        left: -85%;
        top: 0;
        display: flex;
        flex-direction: column;
        background: #fff;
        width: 85%;
        height: 100vh;
        transition: left 0.4s ease-in-out;
        overflow-y: scroll;
    }

    .showMenu {
        left: 0;
    }

    .close {
        display: none;
    }
  }

  @media only screen and (max-width: 400px) {
    .contact-container {
        padding: 40px 5px;
        box-sizing: border-box;
        font-size: 1.1em;
      }

    .contact-form button {
        font-size: 1.1em;
        padding: 20px 5px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      margin-bottom: 20px;
      border: 1px solid #cccccc;
      border-radius: 4px;
      transition: border-color 0.3s;
    }
  }

  