:root {
    --b-shadow: 1px 1px 0px rgb(30, 0, 0), 2px 2px 0px rgb(60, 0, 0), 3px 3px 0px rgb(140, 0, 0), 4px 4px 0px rgb(180, 20, 0), 5px 5px 0px rgb(221, 34, 0);
}

.header1 {
    user-select: none;
    font-family: 'Bebas';
    text-align: center;
    color: white;
    cursor: pointer;
    transition: text-shadow 0.2s ease-in-out;
    margin: 3vh 0;
    font-size: 20vh;
}

.header1:hover {
    color: white;
    text-shadow: var(--a-shadow);
}

.paragraph {
    user-select: none;
    text-shadow: 0px 0px 5px black;
    width: 90vw;
    margin: 0 5vw;
    margin-bottom: 5vh;
    font-size: 6vh;
    font-family: "Source Sans Pro";
    color: white;
    box-sizing: border-box;
    text-align: center;
}

code {
    font-family: "Source Sans Pro";
    font-weight: 900;
    color: black;
}

code:hover {
    color: grey;
}

span {
    user-select: none;
    transition: text-shadow 0.1s ease-in-out;
}

span:hover {
    text-shadow: var(--b-shadow);
}

div#footer {
    font-family: 'Source Sans Pro', 'Arial';
    background: #d20;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    font-size: 4vh;
    font-weight: 500;
    bottom: 0;
    width: 100vw;
    height: 90px;
}