:root {
    --a-shadow: 1px 1px 0px rgb(30, 0, 0), 3px 3px 0px rgb(60, 0, 0), 5px 5px 0px rgb(140, 0, 0), 7px 7px 0px rgb(180, 20, 0), 9px 9px 0px rgb(221, 34, 0);
    --text-shadow-black: 0px 0px 5px black;
    --palette-blue: #2a1bcb;
    --palette-green: #2acb1b;
    --palette-red: #cb2a1b;
}

::-webkit-scrollbar {
    display: none;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding-top: 90px;
    background: #222;
}

div#header {
    font-family: 'Bebas', 'Arial';
    position: absolute;
    background: #e53;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;

    padding: 0px 50px;
    font-weight: 400;
    top: 0;
    width: 100vw;
    height: 90px;
}

div#header > h1 {
    letter-spacing: 1vh;
    user-select: none;
    text-shadow: 0px 0px 5px black;
    color: white;
    flex: 1 1 auto;
    margin: 0;
    font-size: 3rem;
}

div#header > ul {
    position: relative;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
}

div#header > ul > li {
    width: 120px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

div#header > ul > li:has(a:hover) {
    background: #d20;
} 

div#header > ul > li > a {
    color: black;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    font-size: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: text-shadow 0.2s ease-in-out;
}

div#header > ul > li > a::after {
    width: 0;
    height: 3px;
    top: 75%;
    background: black;
    box-shadow: var(--a-shadow);
    position: absolute;
    content: "";
    transition: width 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

div#header > ul > li > a:hover {
    text-shadow: var(--a-shadow);
}

div#header > ul > li > a:hover::after {
    width: 80px;
}

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;
}

.contactWrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Bebas', 'Arial';
    font-size: 3rem;
}

.contactWrapper > h1 {
    margin: 0;
}

.contactForm {
    background: rgba(255, 255, 255, 0.4);
    padding: 2%;
    width: 60%;
    height: 40%;
    display: flex;
    flex-direction: column;
}

.contactInputs {
    height: 80%;
    display: flex;
    flex-direction: column;
}

.contactInputs > input[placeholder=Subject] {
    font-family: 'Source Sans Pro', 'Arial';
    font-weight: 300;
    font-size: 2rem;
    height: 20%;
    margin-bottom: 5px;
    border: none;
    box-shadow: 0px 2px 3px black;
    outline: none;
    text-align: center;
} 

.contactInputs > textarea[placeholder=Body] {
    resize: none;
    font-family: 'Source Sans Pro', 'Arial';
    font-weight: 400;
    font-size: 2rem;
    height: 80%;
    margin-bottom: 5px;
    box-shadow: 0px 2px 3px black;
    outline: none;
    text-align: left;
}

.contactForm > button {
    cursor: pointer;
    font-family: 'Bebas', 'Arial';
    height: 20%;
    font-size: 2rem;
    box-shadow: 0px 2px 3px black;
}

.contactForm > p {
    text-align: center;
    margin-top: 0;
    font-size: 2rem;
}