body {
  margin:0px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: none;
  }

  #globeImage{
    padding-left:2vw;
    margin:0;
  }

  .bdy{                 
    width: 100%;
    background-image: url('../images/cool.gif');
    background-repeat:round;
  }

  .contactDetails{
    color:red;
  }
  .contactBody p{
    margin: 0;
    padding-top: 10px;
  }

  .contactBody{
    background-color: white;
    color:black;
    margin-left:15vw;
    margin-right:15vw;
    margin-bottom: 0px;
    padding-left:3%;
    padding-right:3%;
    min-height: 93.5vh;
    font-family: serif;
    font-size: 25px;
    opacity: 0.92;
  }

  .contact-Container{
    margin-left: auto;
    margin-right:auto;
    display: grid;
    grid-template-columns: auto;
    max-width: 60vw;
    }

  .inputBox{
    padding: 10px;
    margin-top: 15px;
    margin-left: 15px;
    font-size: 15px;
    font-family: serif;
    width:40vw;
    height:5vh;
    resize:vertical;
  }

  .contactBtn{
    float:right;
    background-color: bisque;
    height:3em;
    width:10em;
    border-radius: 0.4em;
    cursor:pointer;
  }


  .dark-mode .contactBody{
    background-color: #222222;
    color:#ebebeb;
  }

  .dark-mode .inputBox{
    background-color: #444444;
    color:#ebebeb;
    
  }

  .dark-mode ::placeholder{
    color:#AAAAAA;
  }

  .dark-mode .contactBtn{
    background-color: #7F7D6D;
    color:white;
  }

  @media screen and (max-width: 680px) {
    .contact-Container{
      width:100vw;
  }
  .inputBox{
    width:52vw;
  }

}