@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
body {
    background-image: url("https://wallpaper.dog/large/989496.jpg")
    
}

#headertext {
  font-size:20px;
  font-weight: 700px;
}

#paragraphtext {
  font-size:14px;
  font-weight: 600px;
}

#lowertext {
  font-size:16px;
  font-weight:100px;
}
table {
  text-align: center;
  width: 40%;
  height: 40%;
  padding: 30px;
  color: white;
  text-shadow: 1.5px 1.5px 5px #000000

}
tr {
  background-image: linear-gradient(to bottom, #12466D ,#1C6397);
  color: white;
  opacity: 0.9;
}

.tr {
  background-image: linear-gradient(to bottom, #023154 ,#023B65 );
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} 
nav{
  display: flex;
  height: 80px;
  width: 100%;
  background-image: linear-gradient(to right, #000F38 ,#1C6397);
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  box-shadow: 10px 0px 10px #000000;
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 15px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.65s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #fff;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 50px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: cyan;
  }
}
.content {
  font-size: 40px;
  font-weight: 700;
  top: 17.5%;
  position: absolute;
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: white;
  text-shadow: 1.5px 1.5px 5px #000000
}

.content2 {
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  position: center;
  text-align: center;
  z-index: -1;
  width: 35%;
  padding: 0 30px;
  color: white;
  text-shadow: 1px 1px 3px #000000
}

.footer {
  font-size: 18px;
  font-weight: 350;
  top: 92.5%;
  position: fixed;
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: white;
  text-shadow: 1.5px 1.5px 5px #000000
}

.contactimage {
  display: block;
  width: 75%;
  position: left;
  top: 42.5%;
  text-align: center;
}

.leftside {
  margin: auto 75px;
  float: left;
  height: 38px;
}

.rightside {
  margin: auto 75px;
  float: right;
  height: 38px;
}

#smallheader {
  font-size: 18px;
  font-weight: 1000;
  text-align: center;
  width: 100%;
  color: white;
  text-shadow: 1.5px 1.5px 1.5px #000000
}
#navlogo {
    width: 120px;
    height: 50px;
}

.dropdown {
    position: middle;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    
}

.dropdown:hover .dropdown-content {display: block;}

#margin {
    margin-top: 45px;
}