.body{
    scroll-behavior: smooth;

}
.body2{
  background: url(/assets/img/ocean.png);
  min-height: 100vh;
}
.contactform{
    margin-top: 25px !important;
    margin-bottom: 25px !important;
    margin: auto;
    width: 85%;
    padding: 2%;
    text-align: center;
    font-size: 24px;
    font-family: 'Sentient-Variable';
    font-weight: 600;
    background-color: lightgray;
    filter: drop-shadow(black 0px 0px 5px);
    border: solid #841f23 2px;
}

form{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.form-control{
    margin: auto;
    border: solid white 2px;
    filter: drop-shadow(black 0px 0px 5px);
    resize: none;
    font-family: 'Author-Variable';
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    width: 80%;
}
.form-control:focus{
    border: solid #841f23 2px;
    outline: none;
    background-color: white;
}
.submitbtn {
    margin: auto;
    --color: #841f23;
    font-family: inherit;
    display: inline-block;
    width: 8em;
    height: 2.6em;
    line-height: 2.5em;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--color);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--color);
  }
  
  .submitbtn:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--color);
    height: 150px;
    width: 200px;
    border-radius: 50%;
  }
  
  .submitbtn:hover {
    color: #fff;
  }
  
  .submitbtn:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
  }
  
  .submitbtn:hover:before {
    top: -30px;
    left: -30px;
  }
  
  .submitbtn:active:before {
    background: #841f23;
    transition: background 0s;
  }

#notification {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #303030; /* Red color */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    z-index: 999999999;
    transition: opacity 0.3s ease, top 0.3s ease;
    text-align: center;
    font-family: 'Author-Variable' !important;
  }

  .explained{
    margin: auto;
    width: 50%;
    color: white;
    text-align: center;
  }
  .explained h1{ 
    color: #841f23;
    font-family: 'Sentient-Variable';
    font-weight: 600; 
    font-size: 38px;
    filter: drop-shadow( black  0px 0px 2px);
    margin-bottom: 0px;
  }
  .explained p{    
    font-family: 'Author-Variable'; 
    font-weight: 300; 
    font-size: 22px;
    margin-top: 0px;
  }

  @media (max-width: 800px){
 
    .form-control{width: 90% !important;}
    .explained{
      margin: auto;
      width: 90%;
      color: white;
      text-align: center;
    }
    .explained h1{font-size: 30px;}
    .explained p{font-size: 18px;}
}