* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 1.5vh;
  background: #f3fafc;
  color: #000000;
  font-family: "Lexend Deca", sans-serif;
}

/*styling for navbar id*/
#navbar {
  background: #3780d6;
  color: #f0f0f0;
  overflow: hidden;
  position: sticky;
  height: 4.5em;
}
/*styling for anchors in navbar id*/
#navbar a {
  color: #f0f0f0;
  text-decoration: none;
}
/*navbar id heading styling*/
#navbar img {
  float: left;
  height: 3.5em;
  margin: 0.5em;
  padding-left: 1em;
}
/*styling for unordered lists in navbar id*/
#navbar ul {
  float: right;
  list-style: none;
  padding-right: 20px;
}
/*styling for list items in unordered lists in navbar id*/
#navbar ul li {
  float: left;
}
/*styling for anchor links in list items in unordered lists in navbar id*/
#navbar ul li a {
  display: block;
  padding: 1.5em;
  text-align: center;
}
/*styling for anchor links in hover in list items in unordered lists in navbar id and the current class*/
#navbar ul li a:hover,
.current {
  background: #80a7d6;
}
.dropdown {
  background: #3780d6;
  height: 4.5em;
}
#navENG,
#navUA {
  display: none;
}
.manENG,
.manUA {
  display: none;
}
h1 {
  font-size: 4em;
  text-align: center;
  padding: 2.5vh 10% 2.5vh 10%;
}
.container {
  margin: 3vh 10% 5vh 10%;
  width: 80%;
}
.password-tips {
  text-align: left;
}
.alt-color {
  background: #3780d6;
  color: #f0f0f0;
}
.password-tips p,
.password-tips h2,
.password-tips h3 {
  padding: 0.5vh;
}
.title {
  font-weight: bold;
  font-size: 2.5vh;
}
.password-tips p {
  margin-left: 50px;
  margin-right: 50px;
  font-size: 1.9vh;
}
.password-tips h2 {
  font-size: 3.5vh;
  font-weight: bold;
}
#hamburger-menu {
  display: none;
}
/* Show arrows by default */
.toggle-text i {
  display: inline-block;
}

/* Hide arrows on larger screens (desktop view) */
@media screen and (min-width: 501px) {
  .toggle-text i {
    display: none;
  }
}

#main-content {
  min-height: 100vh;
}
footer {
  background: #3780d6;
  text-align: center;
  padding: 1vh;
  color: #f3fafc;
}
#copyright {
  text-decoration: underline;
}
#copyright:hover {
  color: #80a7d6;
}
.popup {
  display: none;
  position: absolute;
  bottom: 100%; /* Position above the footer */
  left: 50%;
  transform: translateX(-50%);
  background-color: #3780d6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
  z-index: 1;
}

.popup-content {
  font-size: 14px;
}

#footer {
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 501px) and (max-width: 1024px) {
  h1 {
    font-size: 8vw;
  }
}
