@import url('https://fonts.googleapis.com/css2?family=Gugi&family=Major+Mono+Display&family=Raleway:ital,wght@0,100;0,400;0,600;0,900;1,100;1,400;1,600;1,900&display=swap');

/**
font-family: 'Gugi', cursive;
font-family: 'Major Mono Display', monospace;
font-family: 'Raleway', sans-serif;
 */

* {
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: #2C2C2C;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    margin: auto;
    max-width: 500px;
}

header {
    align-items: center;
    border-top-left-radius: 3rem;
    border-top-right-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
}

main {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 3rem;
    text-align: center;
}

header, main {
    background-color: #3e3e3e;
    margin: 0 2rem;
    padding: 2rem 0;
}

footer {
    align-items: center;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    left: 0;
    position: fixed;
    padding: 1rem;
    width: 100%;
}

footer p {
    display: block;
    text-align: center;
    width: 100%;
}

a {
    color: #F8A87C;
    text-decoration: none;
}

a:hover {
    color: #ffd5b9;
    text-decoration: underline;
}

hr {
    border: 1px solid #F8A87C;
}

.logo-wrapper img {
    width: 48px;
    margin-bottom: 1rem;
}

h1 {
    color: #F46F25;
    font-family: 'Major Mono Display', monospace;
}

h2 {
    color: #F8A87C;
    font-family: 'Raleway', cursive;
    font-weight: 400;
}

h3 {
    font-family: 'Raleway', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
}

p {
    font-size: 1rem;
}

h3, p {
    color: #E5E5E5;
}

.bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media only screen and (min-width: 400px) {
    header {
        flex-direction: row;
        text-align: left;
    }

    .logo-wrapper img {
        margin-bottom: 0;
        margin-right: 1rem;
    }
}
