body {
    background-color: rgba(255, 255, 255, 0.451);
    font-family: Impact, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.logo-container {
    position: absolute;
    top: 10px;
    left: 10px;
}

.logo {
    height: 100px;
    width: auto;
}

header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    gap: 10px;
}

#Links {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

#Links button {
    background-color: white;
    border: none;
    font-family: Impact, sans-serif;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.4s;
    white-space: nowrap;
}

#Links button:hover {
    color: #9acc52;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 5px 10px;
    }

    .logo {
        height: 50px;
        width: auto;
        margin-right: 10px;
    }

    #Links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        margin-left: auto;
    }

    #Links button {
        font-size: 14px;
        padding: 8px 15px;
        text-align: center;
    }

    .login-container {
        padding: 20px;
        width: 85%;
        top: 50%;
    }
}

.waves {
    position: absolute;
    left: 0;
    top: 140px;
    height: 90%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .waves {
        height: auto;
        width: 100%;
    }
}