/* Top Level */
:root {
    --dark-main: #000000;

    --pop: #FF2E2E;
    --light: #FFB3B3;

    --gray: #666666;
    --mid-gray: #737373;
    --light-gray: #D9D9D9;

    --bronze: #CD7F32;
    --light-bronze: #F0D9C1;

    --silver-gradient: linear-gradient(90deg, var(--mid-gray) 0%, var(--gray) 100%);
}
html {
    scroll-behavior: smooth;
    width: 100vw;
}
body {
    background-color: var(--dark-main);
    color: white;
    margin: 0;
    font-family: "Lato", sans-serif;
}
* {
    box-sizing: border-box;
}

a:focus-visible {
    outline: var(--pop) 2px solid;
    border-radius: 5px;
}

#headerLinks {
    position: absolute;
    top: 15px;
    right: 15px;
}
#headerLinks > a {
    transition: 0.25s;
    color: white;
    margin-right: 10px;
}
#headerLinks > a:hover {
    color: var(--pop);
}
#headerLinks > a path {
    fill: currentColor;
}

/* General */
section {
    padding-inline: 50px;
    padding-top: 25px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1000px;
}
h1 {
    color: white;
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 96px;
}
h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 25.2px;
    margin-bottom: 25px;
}
h2 span {
    color: var(--pop);
}
p {
    line-height: 36px;
    font-size: 20px;
}
a {
    color: inherit;
    text-decoration: none;
}
footer {    
    background: linear-gradient(180deg, #00000000 0%, #000000 60%);
    padding-block: 40px;
    padding-inline: 25px;
    display: flex;
    flex-direction: column;
    font-size: calc(0.35 * min(60px, max(40px, 10vw)));
    text-align: center;
}
footer a {
    color: rgb(var(--text-color));
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Mobile */
@media screen and (max-width: 649px) {

}

/* Tablet */
@media screen and (min-width: 650px) and (max-width: 1000px) {

}

/* Computer */
@media screen and (min-width: 1000px) {
    
}