body {
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/*Navigation Style*/  
.topnav {
    overflow: hidden;
    background-color: #2b2828;
    box-shadow: 2px 2px 2px rgb(4, 254, 250);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    border-bottom: 1px solid black;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
  
.topnav a.active {
    background-color: #30f212;
    color: rgb(0, 0, 0);
}
  
.topnav .icon {
    display: none;
}
/*Rest of code is designed for mobile first and media query runs for desktop site*/
/*Header Styling*/

.header {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: .75em;
    height: 20vh;
    background-image: url("https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?auto=format&fit=crop&q=80&w=2940&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-attachment:fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

.header-content{
    background-color: rgba(94, 255, 123, 0.757);
    color: rgb(0, 0, 0);
    width: 100%;
    text-align: center;
}

/*For header effect*/
.main-heading::after{
    content: "|";
    font-size: 1em;
    animation: blink .75s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: rgb(0, 0, 0) }
}

/*Main container*/
.main {
    height: fit-content;
    width: 100vw;
    background-image: url("https://images.unsplash.com/photo-1522096823084-2d1aa8411c13?auto=format&fit=crop&q=80&w=2070&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-attachment:fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
  width: 100vw;
  height: fit-content;
  margin: 0 auto;
  background-color: #b2b2a4d6;
  font-size: 1.2em;
  margin-bottom: 2%;
}

form{
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
input,textarea,label{
  display:block;
  margin:0 auto;
  width:100%;
  color:#000000;
}
input,textarea{
  background-color:#047d1a;;
  border:0;
  border-bottom: 2px solid #041421;
}
input[type=submit]{
  background-color: rgb(77, 190, 40);
  padding: 15px 0;
  color:black;
  font-size:18px;
  border: solid 1px black;
  margin-top:30px;
  cursor:pointer;
}
input[type=submit]:hover{
  background-color: #86b9b0;
  color: black;
}
input,textarea{
  color:white;
  font-size: 18px;
  padding:10px;
}
input:focus, textarea:focus{
  outline: 1px solid white;
}

.g-recaptcha {
    text-align: center;
}

.return button{
    background-color: #03fb0b; /* Green */
    border: none;
    color: rgb(0, 0, 0);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

/*Footer Section*/
.footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(71, 205, 95);
    height: fit-content;
}

.footer-content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer a {
    color: #084181;
}

.footer a:hover {
    color: #1062c0;
}

.credit {
    background-color: aquamarine;
    width: 100%;
    text-align: center;
}
/*Navigation Style for mobile*/
@media screen and (max-width: 600px) {
    .nav-content a {
        display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
    .topnav.responsive {
        position: relative;
        display: block;
    }
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
}

@media screen and (min-width: 600px) {
    /*Header styling for desktop view*/
    .header {
        height: 30vh;
        font-size: 2em;
    }

    .footer {
        font-size: 1.25em;
    }

    form {
        width: 50vw;
    }
}