.on-top{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, .75);
    padding: 0 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

canvas {
    display: block;
    width: 100%;
    background: #000;
    border-radius: 8px;
}
.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.login-container form {
    display: flex;
    flex-direction: column;
}
.login-container input {
    padding: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}
.login-container button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.hidden {
    display: none;
}

.selected {
    border-bottom: 2px solid black;
}

.hamburger {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.on-top > * {
    padding: 20px;
}

.login {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
}

nav > * {
    padding: 20px;
    font-size: 24px;
    color: black;
    opacity: 75%;
    text-decoration: none;
}

@media (max-width: 900px) {
    .login {
        display: none;
    }
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
        background-color: #fff;
    }

    .nav-links a {
        border-top: 1px solid #ccc;
        padding: 15px 20px;
    }

    .selected {
        background: rgba(0, 0, 0, .15);
    }
}