/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
  min-height: 100%;
}
body {
    font-family: "Questrial"; 
  height: 100%;
  background: linear-gradient(to bottom right,#75c1f0,#dbfebe);
}

/* Navbar styles */
.navbar {
  background-color:#ffffff;
    color:#91DCF2;
    padding: 10px 0;
  overflow: hidden;
}
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  border: none;
  outline: none;
    color: #0076a8;
  font-size: 25px;
  padding: 20px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

.dropdown .dropbtn:hover{
    background-color: #dff9fb;
  transform: transitionY(-10px);
  transition: all ease 0.8s;
  border-radius: 15px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}



.show {
  display: block;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
  width: 250px;
}

.logoClass{
  margin-left: 0%;
}
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
      padding: 20px;
}

.nav-links li:last-child {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #0076a8;
    font-weight: 500;
  font-size: 25px;
  font-family: "Questrial"; 
  padding: 20px;

}

.nav-links a:hover{
  background-color: #dff9fb;
  transform: transitionY(-10px);
  transition: all ease 0.8s;
  border-radius: 15px;
}
/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #91DCF2;
    margin: 3px 0;
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #ddf3ea;
        position: absolute;
        top: 90px;
        left: 0px;
        width: 100%;
        padding: 20px 0;
      padding-left: 20px;
        z-index: 1;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }
}


.title{
  text-align: center;
  margin-top: 2%;
}



h1{
  font-size: 45px;
  margin-top: 5%;
  margin-left: 15%;
  margin-right: 15%;
}

.button1{
  margin-left: auto;
  margin-right: auto;
  text-align: center;

}

input{
  padding: 2%;
  margin-top: 3%;
  margin-bottom: 4%;
  border-radius: 15px;
}

iframe{
  margin-bottom: 15%;
  
}

input{
  padding: 2%;
  margin-top: 3%;
  margin-bottom: 2%;
  border-radius: 15px;
  background-color: #a2c3bd;
  color:  #ffffff;
  border: solid white;
  font-family: "Questrial";
  font-size: 20px;
}

input:hover{
  background: linear-gradient(to top right, #60c1e1, pink); 
  color: white;
  font-weight: bold;
  transform: translateY(-10px);
  transition: 0.5s all ease;
    border: solid #ffffff;
}