*
{
    padding: 0;
    margin: 0;
}

:root
{
    --primary-color: #6e0f19;
    --secondary-color: #000000;
    --trinary-color: #ffffff;
    font-family: sans-serif;
}

.container
{
    padding: 10px;
    max-width: 1800px;
}

img, iframe
{
    width: 100%;
    height: auto;
}

main img 
{
    border-radius: 5px;
}

.shadow-boxing 
{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.rounded
{
    border: 3px solid var(--secondary-color);
}

#developer
{
    background-color: #333333;
    margin: 30px 0;
    padding: 20px;
    font-size: 12px;
}

.has-white-text
{
    color: white;
    font-family: 'DM Sans',sans-serif;
    font-size: 28px;
    margin: 0 0 20px;
    text-transform: none;
    font-weight: 100;
    letter-spacing: 2px;
}

ul
{
    /*Removes the bullets.*/
    list-style-type: none;
    /*Removes browser default settings.*/
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

/*All links on the webpage.*/
li a
{
    display: block;
    text-align: center;
    text-decoration: none;
}

footer a 
{
    color: var(--secondary-color);
}

video
{
    width: 100%;
    height: auto;
    max-width: 800px;
}

header 
{
    width: 100%;
    height: 80vh;
    position: relative;
}

header img
{
    width: 100%;
    height: 100%;
    object-fit: cover;   
    object-position: 75% 0;
    -webkit-filter: brightness(60%) contrast(80%) blur(0px) grayscale(10%);
    filter: brightness(60%) contrast(80%) blur(0px) grayscale(10%); 
}

#header-content
{
    position: absolute;
    top: 50%;
    padding: 20px;
    width: 100%;
    text-align: center;
}

#header-text
{
    
    color: var(--trinary-color);
}

.standard-btn
{
    background-color: var(--trinary-color);
    border: none;
    color: var(--secondary-color);
    padding: 15px 30px;
    margin: 12px 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    border-radius: 30px;
    font: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

button:hover
{
    box-shadow: 0;
    background-color: var(--secondary-color);
    color: var(--trinary-color);
}

#logo-container
{
    width: 100%;
    height: auto;
    background-color: var(--secondary-color);
}

#logo-title
{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
} 

.section-content
{
    text-align: center;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

#sig-container
{
    max-width: 100px;
}

#sig-container img
{
    width: 100%;
}

.active
{
    color: var(--primary-color);
}