@font-face {
    font-family: 'BigNoodle';
    src: url('./fonts/big_noodle_titling.ttf') format('truetype');
}
@font-face {
    font-family: 'Gunplay';
    src: url('./fonts/gunplay.otf') format('opentype');
}
@font-face {
    font-family: 'Futura';
    src: url('./fonts/FuturaPTMedium.otf') format('opentype');
}


:root {
    --fries-gold: #c2991e;
    --dark-grey: #252525;
    --mid-grey: #404040;
    --light-grey: #808080;
    --ultra-light-grey: #D2D2D2;
    --ultra-light-grey2: #b4aea4;
    --link-blue: #0f74ef;
    --free-green: #247657;

    --dark-brown: #231f1d;
}


html {
    background-color: var(--dark-brown);
}

body {
    background-color: var(--dark-brown);
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    font-family: Gunplay, Verdana, Geneva, Tahoma, sans-serif;
    color: var(--light-grey);
    font-size: 16px;
}

#wrapper {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

h1 {
    font-family: 'BigNoodle';
    font-size: 80px;
    color: var(--fries-gold);
}

h2 {
    margin-top: 60px;
    font-size: 50px;
    font-family: 'BigNoodle';
    color: var(--ultra-light-grey);
}


.picture {
    width: 100%;
    object-fit: cover;

}

.smallCaps {
    font-size: 10px;
}

table {
    margin: 15px 0;
    background-color: #D2D2D2;
    color: var(--dark-grey);
    width: 100%;
    border-collapse: collapse;
    border-width: 2px;
    border-style: none;
    box-shadow: 10px 5px 20px #030303;
}

table tr {
    border-bottom: 2px solid var(--dark-brown);
}

table td {
    padding: 5px;
    text-align: center;
}

table#quickstartup tr:nth-child(even), table#refspeeds tr:nth-child(even) {
    background-color: var(--ultra-light-grey2);
    text-align: center;
}

#gotowebsite {
    width: 100%;
    background-color: var(--fries-gold);
    color: var(--dark-grey);
    min-height: 15px;
    padding: 15px 0;
    margin: 0;
    text-align: center;
}

#gotowebsite a {
    font-family: 'Futura';
    text-decoration: none;
    color: var(--dark-grey);
    font-size: 24px;
    text-transform: uppercase;
}

/* RESPONSIVE */

@media screen and (min-width: 1000px) {
    #wrapper{
        width: 500px;
    }
}
