@font-face {
    font-family: 'Century';
    src: url('../fonts/century_gothic.woff') format('woff');
}

body {
    background-color: #111;
    color: #fff;
    font-family: "Century";
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.center {
    text-align: center;
}

.centerbox {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centerbox > div {
    width: min(90vw, 900px);
    padding: 20px;
    box-sizing: border-box;
}

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