* {
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 20px;
}

body,
html {
  height: 100%;
  width: 100%;
  background-color: azure;
}

/* Styling Navigation Menu and Items */
nav {
  width: 100%;
  height: 10vh;
  background-color: rgb(241, 54, 210);
  z-index: 9999;
  position: fixed;
}
label.logo {
  font-size: 20px;
  color: white;
  font-weight: 600;
  line-height: 10vh;
  margin: 0 50px;
}
nav ul {
  float: right;
  text-decoration: none;
  list-style: none;
}

nav ul li {
  display: inline-block;
  line-height: 10vh;
}

nav ul li a {
  color: white;
  font-size: 21px;
  padding: 8px 15px;
}

nav ul li a:hover {
  color: black;
}

#bars {
  color: white;
  float: right;
  line-height: 10vh;
  font-size: 20px;
  margin-right: 10px;
  display: none;
}

#check {
  display: none;
}

#check:checked~ul {
  left: 0;
}

@media(max-width:578px) {
  #bars {
    display: block;
  }

  nav ul {
    width: 100%;
    height: 100vh;
    background-color: rgb(106, 103, 103);
    position: fixed;
    top: 10vh;
    left: -100%
  }

  nav ul li {
    display: block;
    margin: 0 30px;
    text-align: center;
    font-size: 18px;
  }
}

/* Styling Body Elemnets */
h1 {
  text-align: center;
  padding-top: 15vh;
  color: red;
  margin-left: auto;
  margin-right: auto;
  font-size: x-large;
}

#text {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  height: 100px;
  width: 50vw;
  font-size: auto;
  text-align: center;
  border-radius: 10px;
  border-width: 5px;
  border-color: rgb(88, 45, 242);
}

.btns {
  padding-top: 10px;
  text-align: center;
}

button {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: rgb(89, 11, 224);
  font-size: 20px;
  border-radius: 5px;
}
button:hover{
  cursor: pointer;
  background-color: rgb(82, 243, 237);
}

#result {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  height: 100px;
  width: 50vw;
  font-size: auto;
  text-align: center;
  border-radius: 10px;
  border-width: 5px;
  border-color: rgb(26, 23, 218);
}



.btn2 {
  padding-top: 10px;
  text-align: center;
}

button {
  background-color: rgb(89, 11, 224);
  color: white;
  font-size: 20px;
  border-radius: 5px;
}

/* styling main content */
#maincontent1 {
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  margin-left: 25%;
  margin-right: 25%;
  background-color: rgb(244, 239, 233);
  border-radius: 10px;
  padding-bottom: 15px;
}

#maincontent2 {
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  margin-left: 25%;
  margin-right: 25%;
  background-color: rgb(244, 239, 233);
  border-radius: 10px;
}

#maincontent3 {
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  margin-left: 25%;
  margin-right: 25%;
  background-color: rgb(244, 239, 233);
  border-radius: 10px;
}

#maincontent4 {
  padding-top: 15px;
  margin-top: 30px;
  text-align: center;
  margin-left: 25%;
  margin-right: 25%;
  background-color: rgb(244, 239, 233);
  border-radius: 10px;
}

footer {
  margin-top: 10px;
  height: 400px;
  width: 100%;
  background-color: #e6f7f7;
  text-align: center;
  border-style: inset;
}
footer img{
  padding-top: 10px;
  width: 200px;
  border-radius: 100px;
}

.copyright {
  padding-top: 50px;
  margin-left: 20px;
  text-align: auto;
}
#successMessage {
  color: rgb(8, 60, 4);
  margin-top: 10px;
}
#boldtext{
  font-size: large;
  color: rgb(229, 30, 87);
 
}
h2{
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
  text-align: center;
  margin-left: 25%;
  margin-right: 25%;
  border-radius: 10px; 
  font-size: 30px;
  color: blue;
  border-style: inset;  
}
#faq{
  margin-top: 30px;
  padding-top: 30px;
  text-align: center;
  width: 100%;
  background-color: bisque;
  padding-bottom: 30px;
  border-style: inset;
  padding-left: 10px;
  padding-right: 10px;
}
#contactform{
display: grid;
place-content: center;
padding-top: 30px;
padding-bottom: 20px;
}
#contactform label{
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 10px;
  color: rgb(73, 22, 227);
}
#contactform input{
  width: auto;
}