body {
    background: url(./Images/Doof.webp) no-repeat center center/cover;
    color: white;
    display: flex;
    min-height: 100vh;
    margin: 0;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
.container {
    background-color: #4FA8AA;
    padding: 3rem;
    border-radius: 1rem;
    border: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.form {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 1rem;
    column-gap: 3rem;
    justify-content: center;
    align-items: center;
}
.title {
    margin: 0;
    text-align: center;
}
label {
    font-weight: bold;
}

.character-container {
    display: flex;
    align-items: center;
}
.number {
    width: 2rem;
}
.password {
    background-color: white;
    color: black;
    padding: 1rem;
    border: 1px solid #333;
    height: 2rem;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    word-break: break-all;
    border-radius: .5rem;
}
.btn {
    grid-column: span 2;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: .5rem 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 1rem;
}
.btn:hover {
    background-color: #FFFFFF33;
}
@media only screen and (max-width: 510px) {
    .container {
        width: 60%;
    }
    .password {
        width: 60%;
    }
} 