* 
{
    padding: 0;
    margin: 0;

    height: 100%;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body 
{
    background-color: #0a0a0a;

    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header
{
    position: relative;

    width: 100%;
    height: auto;
    aspect-ratio: 4 / 1;
    overflow: hidden;
}

header img
{
    width: 100%;
    height: 100%;
    z-index: 1;
}

header #titleHolder
{
    position: absolute;
    z-index: 2;

    top: 0;
    left: 2.5%;

    width: 95%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;

    gap: 5%;
}

header h1 
{
    font-size: 5em;
    font-weight: 500;

    height: 1em;
    
    letter-spacing: 0.2em;

    display: flex;
    align-items: center;
    justify-content: center;
}

header h2
{
    font-size: 2em;

    height: 1em;

    font-family: "Anonymous Pro", monospace;
    font-weight: 700;
    font-style: normal;

    background-color: #0a0a0a;
    border-radius: 0.5em;

    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

header span
{
    font-size: 1em;
    color: #ff4d4d;
    text-decoration: underline;

    font-family: "Anonymous Pro", monospace;
    font-weight: 700;
    font-style: normal;

    padding-left: 20px;
    padding-right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile small */
@media (max-width: 304px)
{
    header
    {
        aspect-ratio: 1 / 1;
    }

    header h1
    {
        font-size: 2em;
        letter-spacing: 0;
        text-align: center;
    }

    header h2 
    {
        display: none;
    }

    header span
    {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Mobile */
@media (min-width: 305px) and (max-width: 449px) 
{
    header
    {
        aspect-ratio: 1 / 1;
    }

    header h1
    {
        font-size: 2em;
        letter-spacing: 0;
    }

    header h2 
    {
        font-size: 1em;
    }

    header span
    {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tablet small */
@media (min-width: 450px) and (max-width: 600px)
{
    header
    {
        aspect-ratio: 2 / 1;
    }

    header h1
    {
        font-size: 3em;
        letter-spacing: 0;
    }
    
    header h2 
    {
        font-size: 1.2em;
    }

    header span
    {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1000px) 
{
    header
    {
        aspect-ratio: 2 / 1;
    }

    header h1
    {
        font-size: 4em;
        letter-spacing: 0;
    }
    
    header h2 
    {
        font-size: 1.5em;
    }
}

/* Desktop */
@media (min-width: 1001px) 
{

}