body {
  font-family: "Afacad Flux", sans-serif;

}

h1 {
    font-size: 60px;
    z-index: 1;
    font-weight: bold;
}

h2 {
  color: #007BFF;
  font-weight: bold;
  font-size: 58px;
  margin-bottom: 20px;
}

.navbar {
  text-align:right;
  background-color: #007BFF;
}

.navbar a{
    color: white;
}

.navbar-nav {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.my-text-shadow {
text-shadow: 1px 2px 6px rgba(58, 58, 58, 0.535);
}

/* #login-btn {
  border: 3px solid #fff;
  border-radius: 40px;
  max-width: 120px;

  margin-top: 6px;
} */

section .container2 {
  padding: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30%;
}

#login-btn {
  border: 3px solid #fff;
  border-radius: 40px;
  max-width: 120px;
  padding: 0 10px 0 10px;
  margin-top: 6px;
}

footer .links a{
  text-decoration: none;
}

.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
opacity: 1;
transform: translateY(0);
}

.blue-button {
  background-color: #007BFF;
  color: white;
  border-radius: 40px;
  border: 1px solid #fff;
  font-size: auto;
  font-weight: bold;
  padding: 10px 30px;
  width: 50;
}

.white-button {
  color: #007BFF;
  background-color: white;
  border-radius: 40px;
  border: 1px solid #007BFF;
  font-size: auto;
  font-weight: bold;
  padding: 10px 20px;
  width: auto;
}

.blue-button:hover {
  background-color: #007BFF;
  color: #fff;
  border-color: #fff;
}

.white-button:hover {
  background-color: #007BFF;
  color: #fff;
  border-color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
  #login-btn {
    padding: 0 10px 0 10px;
    margin-left: 10px;
    margin-right: 10px;
    max-width: none;
  }
  .new-navbar {
    margin-top: -20px !important;
  }
}
