body {
    font-family: "Poppins";
    font-weight: 400;
  }
.container {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 80px;
}
.jumbotron {
    background-color: transparent;
    padding: 2rem;
}
.logo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}
.btn {
    display: block;
    margin: 2rem auto;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    background-color: #1979E4;
    color: #fff;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #1FE179;
    color: #fff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .jumbotron {
      padding: 1rem;
    }
    .logo {
      max-width: 200px;
    }
}
.display-4 {
    font-size: 1.4rem;
    padding: 2rem;
    margin-top: 3rem;
    font-weight: 400;
    color: white;
}
.p {
    font-weight: 400;
}
.privacy-link {
    font-size: 12px;
    color: white;
}
.small-copyright {
    font-size: smaller;
    vertical-align: text-top;
}
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
}

.back-button {
    position: fixed;
    top: 100px; /* 100px from the top */
    right: 20px; /* Adjusted to not stick to the very edge */
    z-index: 1000; /* Ensures it stays on top of other content */
    background-color: #1979E4; /* Example blue color, change as needed */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Optional: adds shadow for better visibility */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .back-button img {
      width: 20px;
      height: 20px;
  }

  .btn-secondary-custom {
    background-color: #353436; 
    color: white; 
    border-color: #353436;
  }
  