body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.background-container {
    background: linear-gradient(135deg, #0a4e91, #5a368a);
    position: relative;
    height: 100%;
    opacity: 0.92;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.welcome-text{
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: white;
    margin: auto;
    text-align: center;
    position: relative;
    top: 35%;
    animation: fadeIn 2s ease-in-out forwards;
    text-shadow: 2px 3px 12px #000000;
}

.welcome-logo {
    position: relative;
    top: 3px;
    left: 75px;
}

.scroll-text{
    position: absolute;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 600;
    top: 93%;
    left: 49%;
    animation: fadeIn 2s ease-in-out forwards;
}

.scroll-icon{
    position: absolute;
    font-weight: 600;
    top: 95%;
    left: 49.9%;
    animation: fadeIn 2s ease-in-out forwards;
}

.login-button {
    border-radius: 10px;
    position: absolute;
    top: 1.2%;
    left: 92.5%;
    color: black;
    z-index: 2000;
    background-color: #e7e7e7; 
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.register-button {
    border-radius: 10px;
    position: absolute;
    top: 1.2%;
    left: 87%;
    color: white;
    z-index: 2000;
    background-color: #008CBA;
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.logout-button{
    border-radius: 10px;
    position: absolute;
    top: 1.2%;
    left: 93%;
    color: black;
    z-index: 2000;
    background-color: #e7e7e7;
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.logout-button a {
    text-decoration: none;
    color: #000000;
    font-size: 17px;
    transition: color 0.3s ease;
}

.login-button a {
    text-decoration: none;
    color: #000000;
    font-size: 17px;
    transition: color 0.3s ease;
}

.register-button a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    transition: color 0.3s ease;
}

.get-started-button {
    border-radius: 10px;
    position: absolute;
    top: 56.5%;
    left: 46.8%;
    color: white;
    z-index: 2000;
    background-color: #008CBA;
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    animation: fadeIn 2s ease-in-out forwards;
}

.get-started-button a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    transition: color 0.3s ease;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    color: #fff;
    font-family: "Trebuchet MS", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar .wtextl {
    font-size: 18px;
    position: relative;
    top: 1px;
    font-weight: 600;
    left: 190px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 5px;
    font-weight: 600;
    margin: 0;
    padding-right: 780px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f0db4f;
}

