/* ================================== Utility Styles ================================== */

#mobile-header {display: none;}

:root {
    --orange: #f57b1f;
    --purple: #49176d;
}
html {
    color: black;
}
@font-face {
    font-family: Numans;
    src: url(/fonts/Numans-Regular.ttf);
}
h1 {
    font-size: 7rem;
    font-family: Numans;
}
h2 {
    font-family: Numans;
    font-size: 4rem;
}
h3 {
    font-family: Numans;
    font-size: 3rem;
}
h4 {
    font-family: Numans;
    font-size: 2.25rem; 
}
h5 {
    font-family: Numans;
    font-size: 2.25rem;
    font-weight: 700;
}
h6 { font-family: Numans;
    font-weight: 700;
    font-size: 1.5rem;
}
p, i, strong, a, input, select, label, button, textarea, ::placeholder, li {
    font-family: Numans;
    font-size: 1.5rem;
    color: var(--black);
}
p + p {
    padding-top:2rem;
}
a {
    transition-property: filter;
    transition-duration: .3s;
    color: var(--purple);
}
a:hover, button:hover {
    filter: brightness(.7);
}
section {
    padding: 2rem 0;
}
button {
    border-radius: 0;
    border: none;
}
li {
    padding-bottom:.75rem;
    margin-left:2rem;
    list-style-type: disc;
}

/* ================================== Main Styles ================================== */

#centerme {
    width: 600px;
}


/* ================================== Mobile Styles ================================== */

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