@font-face {
    font-family: 'Futura';
    src: url('./fonts/FuturaPTMedium.otf') format('opentype');
}
@font-face {
    font-family: 'Razed';
    src: url('./fonts/razed-light.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
}

:root {
    --fries-gold: #c2991e;
    --dark-grey: #252525;
    --mid-grey: #404040;
    --light-grey: #808080;
    --ultra-light-grey: #D2D2D2;
    --ultra-light-grey2: #b4aea4;
    --link-blue: #0f74ef;
    --qurple-light: #a562b8;
    --qurple-dark: #5a3e63;
    --qurple-darker: #3f2c46;
    --free-green: #247657;
    --dark-blue: #0b4387;
    --light-blue: #cddff6;
    --ultra-light-blue: #e4eefb;
}


html {
    background-repeat: no-repeat;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
    color: var(--ultra-light-grey);
    font-size: 16px;
}

#bg {
    background-color: var(--dark-grey);
    background-image: url('./gfx/earth.jpg');
    background-size: cover;
    margin-left: auto ;
    margin-right: auto ;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
}

#wrapper {
    background-color: rgba(27, 27, 27, 0.8);
    backdrop-filter: blur(4px);
    padding: 15px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(100%-30px);
}

h1 {
    width: 100%;
    text-align: center;
    font-family: 'razed';
    font-size: 60px;
    color: var(--qurple-light);
}

h2 {
    margin-top: 60px;
    font-size: 40px;
    font-family: 'razed';
    color: var(--fries-gold);
}


.picture {
    width: 100%;
    object-fit: cover;

}

.smallCaps {
    font-size: 10px;
}

table {
    margin: 15px 0;
    background-color: var(--qurple-darker);
    width: 100%;
    border-collapse: collapse;
    border-width: 0px;
    border-style: none;
    box-shadow: 5px 5px 10px var(--qurple-dark);
    border-top: 1px solid var(--qurple-light);
    
}

table tr {
    border-bottom: 1px solid var(--qurple-light);
}

table td {
    padding: 5px;
    text-align: center;
    font-size: 24px;
    color: white;
}

table#quickstartup1 tr:nth-child(even),
table#quickstartup2 tr:nth-child(even),
table#climb tr:nth-child(even),
table#descent tr:nth-child(even),
table#refspeeds tr:nth-child(even) {
    background-color: var(--qurple-dark);
    text-align: center;
}

#gotowebsite {
    width: 100%;
    background-color: var(--fries-gold);
    min-height: 15px;
    padding: 15px 0;
    margin: 0;
    text-align: center;
}

#gotowebsite a {
    font-family: 'Futura';
    text-decoration: none;
    color: var(--qurple-darker);
    font-size: 30px;
    text-transform: uppercase;
}

/* RESPONSIVE */

@media screen and (min-width: 1000px) {
    #bg {
        width: 500px;
    }
    #wrapper{
        width: 470px;
    }
}
