:root {
    --var-hero-color: #3db8d1;
    --var-nisien-color: #ccff4a;
    --var-nisien-black: black;
    --var-nisien-text: white;
    --var-border-color: rgb(39, 39, 42);
    --var-border-radius: 16px;
}
body {
    font-family: "Archivo", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: var(--var-nisien-black);
    color: var(--var-nisien-text);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
header {
    width: min-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    img {
        height: 50px;
        margin-right: 1rem;
    }
    h2 {
        white-space: nowrap;
        color: var(--var-hero-color);
    }
    a,
    a:focus,
    a:hover,
    a:visited {
        text-decoration: none;
    }
}
article {
    padding: 1rem 2rem;
    text-align: center;
    border: 1px solid var(--var-border-color);
    border-radius: var(--var-border-radius);
    width: 300px;
    margin-top: 3rem;
    word-wrap: break-word;
}
footer {
    position: absolute;
    bottom: 1rem;
    img {
        width: 100px;
    }
}

button,
input {
    width: 220px;
    margin: 1rem;
    padding: 1rem;
    border-radius: var(--var-border-radius);
    background-color: transparent;
    border: 1px solid var(--var-border-color);
    color: var(--var-nisien-text);
}
button:hover,
input:hover {
    border-color: var(--var-hero-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style-type: none;
}
