@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');

#password-protect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

#password-protect input[type="password"] {
    border: 1px solid white;
    padding: 10px;
    font-size: 16px;
    background-color: transparent;
    color: white;
    outline: none;
    margin-bottom: 10px;
}


body {
    margin-top: 60%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('9078.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
}

.content {
    background-color: black;
    color: white;
    padding: 20px;
    margin: 30% auto;
    text-align: left;
    width: 40%;
    max-width: 600px;
    border-radius: 8px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
