* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    color: #464343;
  }
  
  section {
    width: 100%;
    height: 100vh;
  }
  
  .logo a {
    text-decoration: none;
    font-size: 2.5rem;
    color: rgb(43, 42, 42);
    letter-spacing: 0.1em;
  }
  
  .fa-xmark {
    font-size: 2.7rem;
    color: rgb(80, 78, 78);
    cursor: pointer;
    transition: 0.4s ease-in-out;
  }
  
  .fa-xmark:hover {
    font-size: 4rem;
  }
  
  .navbar-contact {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 90px;
  }
  
  .main-heading h2 {
    font-size: 2.2rem;
    font-weight: 400;
    max-width: 70%;
    text-align: center;
    margin: 30px auto;
  }
  
  .row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0 40px;
  }
  
  label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  #name,
  #email {
    font-size: 2.1rem;
    font-weight: 200;
    color: rgb(88, 87, 87);
    width: 390px;
    height: 65px;
    margin-right: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  
  .txt-msg {
    display: flex;
    justify-content: center;
  }
  
  #msg {
    font-size: 2.1rem;
    color: rgb(88, 87, 87);
    font-weight: 200;
    width: calc(390px * 2 + 40px); /* Sum of both inputs + gap */
    height: 320px;
    margin-right: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  
  .submit-btn {
    text-align: center;
    margin-top: 60px; /* optional spacing */
  }
  
  .btn {
    font-size: 1.4rem;
    color: #5603ad;
    width: 220px;
    height: 65px;
    border-radius: 50px;
    margin-bottom: 200px;
    border: 1px solid #5603ad;
    background: none;
    cursor: pointer;
    transition: 0.4s ease-in-out;
  }
  
  .btn:hover {
    background: #5603ad;
    color: #ffff;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  