* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
}

/* uncomment anything to use, DELETE ANYTHING UNNECESSARY */
/* blank elements are commented out to prevent vscode warnings */

@font-face {
    font-family: Neue Haas Unica;
    src: url(fonts/NeueHaasUnicaPro-Regular.ttf);
}

/* ::selection {

} */

body {
    background-color: #ffe600;
    /* max-width: 1000px;
    margin: auto;
    padding: 0 20px; */
}

p, a, h1 {
    font-family: Neue Haas Unica, Helvetica, Arial, sans-serif;
    color: #ff5500;
}

a:hover {
    text-decoration-line: none;
}

nav {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin: auto;
    padding: 5px 10px;
    gap: 5px;
}

main {
    padding: 25px 10px;
    display: none;
}

main p {
    color: #000;
}

header p, main, footer {
    text-align: center;
}

footer {
    padding: 0 10px;
}

/* center cheatsheet */
/* #center {
    position: fixed;
    top: 0; bottom: 0;
    left: 0; right: 0;
    margin: auto;
    max-width: 1000px;
    max-height: 700px;
} */

/* MOBILE */

@media screen and (max-width: 1000px) {
    
}

@media screen and (max-width: 700px) {
}