body {
    background-image: url("Background_img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
     background-position: center;
}


:root {
    box-shadow: 2px 2px 3px 3px;
    width: 100%;
  }
  
  * {
    margin: 0;
    padding: 0;
  }
  
  .header {
    background-image: linear-gradient(25deg, #8c52ff, #5ce1e6);
    padding: 1.3rem;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 10;
  }
  .logo {
    color: #f0ddff;
    text-shadow:
        0 0 7px rgb(140, 0, 255),
        0 0 10px rgb(140, 0, 255),
        0 0 21px rgb(140, 0, 255),
        0 0 42px rgb(140, 0, 255),
        0 0 82px rgb(140, 0, 255),
        0 0 92px rgb(140, 0, 255),
        0 0 102px rgb(140, 0, 255),
        0 0 151px rgb(140, 0, 255);
    align-self: center;
    margin-left: 1.2rem;
    font-size: 2.5rem;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
  .nav-bar {
    margin: auto;
  }
  
  .nav-bar a {
    padding: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    left: -100px;
    color: #f0ddff;
    text-shadow:
        0 0 7px rgb(140, 0, 255),
        0 0 10px rgb(140, 0, 255),
        0 0 21px rgb(140, 0, 255),
        0 0 42px rgb(140, 0, 255),
        0 0 82px rgb(140, 0, 255),
        0 0 92px rgb(140, 0, 255),
        0 0 102px rgb(140, 0, 255),
        0 0 151px rgb(140, 0, 255);
  }

  button {
    font-size: 1rem;
    border: 1px solid black;
    border-radius: 5px;
    padding: 0.9rem;
  }

  h2 p {
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }

  .contact-form {
    z-index: 10;
    position: absolute;
    top: 100px;
    left: 30px;
  }

  #Email {
    width: 300px;
    height: 32px;
    border-radius: 8px;
    padding-left: 10px;
    opacity: 0.9;
    background-color: rgb(59, 59, 59);
    color: white;
    border-color: #080808;
    position: absolute;
    left: 325px;
    top: 50px;
  }

  ::placeholder {
    color: white;
    font-family: fantasy;
    letter-spacing: 0.1cm;
  }

  #Message {
    width: 600px;
    height: 300px;
    border-radius: 8px;
    padding-left: 10px;
    opacity: 0.9;
    background-color: rgb(59, 59, 59);
    color: white;
    border-color: #080808;
    position: absolute;
    left: 325px;
    top: 125px;
    padding-top: 10px;
  }

  #File::-webkit-file-upload-button{
    height: 35px;
    position: absolute;
    left: 700px;
    width: 225px;
    font-size: 20px;
    border-radius: 5px;
    top: 55px;
    background-color: rgb(59, 59, 59);
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    pointer-events: fill;
    border-bottom: #080808;
  }

  #File::-webkit-file-upload-button:hover {
    background-color: rgb(32, 32, 32);
    color: rgb(224, 224, 224);
    transition: 1s ease-in-out;
  } 

  #Submit {
    position: absolute;
    top: 450px;
    width: 200px;
    left: 525px;
    border-radius: 15px;
    background-color: rgb(59, 59, 59);
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
  }


