:root {
    --light-lavendar: rgb(236,227,244);
    --pink: rgb(223, 7, 115);
    --purple: rgb(36, 9, 70);
    --secondary-purple: rgb(50, 5, 109);
    --yellow: rgb(254, 185, 34);
}
body {
    background-color: var(--purple);
    color: white;
}
li::marker {
    color: var(--pink);
}
.content a {
    color: var(--pink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s linear 0s;
}
a:hover {
    border-bottom-color: var(--pink);
}
input[type=text], input[type=password] {
    border: 1px solid var(--secondary-purple);
    border-radius: 10px;
}
:is(input[type=text], input[type=password]):focus {
    outline-color: var(--pink);
}
input[type=submit], a.button {
    background-color: var(--pink);
    color: white;
    transition: color 0.2s linear 0s, background-color 0.2s linear 0s;
    height: 3rem;
    border-radius: 1.5rem;
    border: none;
    padding: 0.5rem 5rem;
    font-size: 1rem;
    font-weight: 600;
}
:is(input[type=submit], a.button):hover {
    color: rgb(27, 27, 27);
    background-color: var(--yellow);
    cursor: pointer;
}
.announcement {
    background: white;
    color: black;
    padding: 1rem;
    border-radius: 10px;
    box-sizing: border-box;
}
footer {
    color: rgb(203, 179, 227);
}
footer a {
    color: white;
}
body::after {
    background: radial-gradient(ellipse at 50% 120%, rgb(223, 7, 115), rgba(255, 255, 255, 0) 70%) left,
                radial-gradient(ellipse at 50% 60%, rgb(97, 20, 182), rgba(255, 255, 255, 0) 70%) center,
                radial-gradient(ellipse at 50% 120%, rgb(254, 185, 34), rgba(255, 255, 255, 0) 70%) right;
    background-repeat: no-repeat;
    background-size: 50% 100%;
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20rem;
    opacity: 0.6;
}
