
* {
    font-family: "Proxima Nova", "Inter", sans-serif;
    color: #26367B;
    line-height: 1.4;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    max-width: 50em;
    margin: 0 auto;

    padding: 2rem;
}

h1 {
    font-size: clamp(1.4rem, 2vw, 2.2rem);
}

span {
    background-color: #26367B;
    transition: background-color 0.2s;
}

body.show-text span{
    background-color: transparent;
}

a {
    background-color: white;
    outline: 4px solid white;
    text-decoration: none;
    border-bottom: 2px solid #0054f5;
    color: #0054f5;
}

a:hover, a:focus, a:active {
    outline: 4px solid #00b2c3;
    outline-offset: 0.2rem;
}

a abbr {
    color: #0054f5;
}

a.button {
    display: inline-block;
    margin-top: 6rem;
    padding: 1rem;
    background-color: #26367B;
    color: white;
    border: none;
    border-radius: 0.4rem;
    transition: all 0.2s;
}

label {
    display: inline-block;
    margin-top: 2rem;
}

input:hover, input:focus, input:active {
    outline: 4px solid #00b2c3;
    outline-offset: 0.2rem;
}

a.button:hover, a.button:focus, a.button:active {
    box-shadow: 0 0 1rem #26367B;
}
