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

/*.box {*/
/*    margin: 2rem;*/
/*    border: 3px solid black;*/
/*    width: 90vw;*/
/*    height: 90vh;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/


.averia-libre-light {
    font-family: "Averia Libre", system-ui;
    font-weight: 300;
    font-style: normal;
}

.averia-libre-regular {
    font-family: "Averia Libre", system-ui;
    font-weight: 400;
    font-style: normal;
}

.averia-libre-bold {
    font-family: "Averia Libre", system-ui;
    font-weight: 700;
    font-style: normal;
}

.averia-libre-light-italic {
    font-family: "Averia Libre", system-ui;
    font-weight: 300;
    font-style: italic;
}

.averia-libre-regular-italic {
    font-family: "Averia Libre", system-ui;
    font-weight: 400;
    font-style: italic;
}

.averia-libre-bold-italic {
    font-family: "Averia Libre", system-ui;
    font-weight: 700;
    font-style: italic;
}

body {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-center {
    width: 100%;
}

.page-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.button-group {
    display: grid;
    grid-template-rows: repeat(2, 7rem);
    grid-auto-flow: column;
    grid-auto-columns: 7rem;
    gap: 0.5rem;
    margin-top: 3.7rem;
    color: black;
    transform: translate(-0.5rem, -0.5rem);
}

.btn {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: black 1rem 1rem;
    width: 100%;
    font-family: 'Commissioner', sans-serif;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-group a {
    text-decoration: none;
}

.btn--primary {
    background: #fff;
    color: #111;
    border: 1px solid black;
}

.btn--primary:hover {
    background: rgba(230, 230, 230, 1.0);
    border-color: rgba(128, 128, 128, 1.0);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

h2 {
    font-family: 'Averia Libre', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    color: #777;
    line-height: 1.65;
}

.hero-image {
    max-width: 50vw;
    max-height: 50vh;
    object-fit: contain;
    margin-bottom: 1rem;
}
