body {
    background-color: #202124;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
}

main {
    padding: clamp(5px, 5%, 20px) clamp(5px, 5%, 40px);
    width: 90%;
    max-width: 1200px;
    background: #292A2D;
    color: #e4e5e7;
    font-size: clamp(14px, 3.5vw, 22px);
    font-family: 'Roboto';
    border-radius: 30px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


button {
    display: inline-block;
    padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 40px);
    font-size: clamp(16px, 3vw, 20px);
    font-weight: bold;
    text-align: center;
    border-radius: 999px;
    background-color: #95e39f;
    color: #292A2D;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #3e3f42;
    color: #e4e5e7;
}

.monospace {
    font-family: monospace;
}

.pass {
    background-color: #202124;
    padding: 4px;
    margin: 4px auto 10px;
    width: 90%;
    max-width: 800px;
    min-height: 50px;
    border-radius: 30px;
    line-height: 1.4;
    text-align: center;
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.pass:hover {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #95e39f;
    color: #292A2D;
    padding: 12px 24px;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-weight: 600;
}

.toast.show {
    opacity: 1;
}

p {
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
}

h1 {
    text-align: center;
}

.passBox {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer {
    text-align: center;
    padding: 10px;
}

footer a {
    color: #95e39f;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body.hidden-text p {
    display: none;
    visibility: hidden;
}

body.hidden-password .pass {
    -webkit-text-security: disc;
    text-security: disc;
}