body {
    background: linear-gradient(135deg, #000f28, #1f0028);
    color: lemonchiffon;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
h1, .glowy {
    text-shadow: 0px 0px 10px rgba(255, 100, 100, 1);
}
.angry-text {
    color: rgb(255, 70, 70);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 1);
}
.glass {
    background: rgba(200, 200, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 15px;
    box-shadow: 0 0px 10px rgba(255, 100, 100, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 100, 100, 1);
    margin: 20px auto;
    max-width: 600px;
}
.black-glass {
    background: #000f28;
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 15px;
    box-shadow: 0 0px 10px rgba(255, 100, 100, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 100, 100, 1);
    margin: 20px auto;
    max-width: 100%;
}
input, select {
    width: 100%;
    padding: 10px;
    border-radius: 32px;
    border: 1px solid rgba(200, 200, 255, 1);
    background: rgba(200, 200, 255, 0.15);
    color: lemonchiffon;
    margin-top: 15px;
}
.form-group {
    text-align: left;
    margin-top: 15px;
    flex-direction: row;
}
.form-group label {
    display: block;
    font-weight: bold;
    text-align: center;
}
footer {
    margin-top: 40px;
    font-size: 0.9em;
    opacity: 0.8;
}
ul, ol {
    text-align: left;
    padding-left: 20px;
}
ul li, ol li {
    margin-bottom: 5px;
}
a {
    color: lemonchiffon;
    transition-duration: .5s;
}
a:hover {
    text-shadow: 0px 0px 10px rgba(100, 255, 100, 1);
}

/* toggled off */
input[type="submit"], input[type="reset"], input[type="button"] {
    background: rgba(200, 200, 255, 0.1);
    cursor: pointer;
    transition: 0.3s;
    text-shadow: 0px 0px 10px rgba(10, 10, 25, 1);
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
    background: rgba(100, 100, 255, 0.5);
    font-weight: bold;
}
input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
    background: rgba(100, 255, 100, 0.5);
    font-weight: bold;
}

/* toggled on */
input[type="submit"][aria-expanded=true], input[type="reset"][aria-expanded=true], input[type="button"][aria-expanded=true] {
    background: rgba(100, 255, 100, 0.4);
}
input[type="submit"][aria-pressed=true], input[type="reset"][aria-pressed=true], input[type="button"][aria-pressed=true] {
    background: rgba(100, 255, 100, 0.4);
}