/* ===== Inter Font Face Declarations ===== */

/* Weight 100 – Thin */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url("./fonts/inter-latin-100-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 100;
    font-display: swap;
    src: url("./fonts/inter-latin-100-italic.woff2") format("woff2");
}

/* Weight 200 – ExtraLight */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url("./fonts/inter-latin-200-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 200;
    font-display: swap;
    src: url("./fonts/inter-latin-200-italic.woff2") format("woff2");
}

/* Weight 300 – Light */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("./fonts/inter-latin-300-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url("./fonts/inter-latin-300-italic.woff2") format("woff2");
}

/* Weight 400 – Regular */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("./fonts/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("./fonts/inter-latin-400-italic.woff2") format("woff2");
}

/* Weight 500 – Medium */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("./fonts/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url("./fonts/inter-latin-500-italic.woff2") format("woff2");
}

/* Weight 600 – SemiBold */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("./fonts/inter-latin-600-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url("./fonts/inter-latin-600-italic.woff2") format("woff2");
}

/* Weight 700 – Bold */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("./fonts/inter-latin-700-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url("./fonts/inter-latin-700-italic.woff2") format("woff2");
}

/* Weight 800 – ExtraBold */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("./fonts/inter-latin-800-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 800;
    font-display: swap;
    src: url("./fonts/inter-latin-800-italic.woff2") format("woff2");
}

/* Weight 900 – Black */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("./fonts/inter-latin-900-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url("./fonts/inter-latin-900-italic.woff2") format("woff2");
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    color: white;
    background: #0d0d0d;
    background-image:
        linear-gradient(to right, rgba(71, 85, 105, 0.15) 1px, transparent 1px),
        linear-gradient(
            to bottom,
            rgba(71, 85, 105, 0.15) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 50% 60%,
            rgba(77, 110, 80, 0.4) 0%,
            transparent 70%
        );
    background-size:
        40px 40px,
        40px 40px,
        100% 100%;

    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 40px);
    padding: 20px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.hero {
    text-align: center;
}

.hero p {
    margin-top: 8px;
    opacity: 0.67;
}

.buttons {
    margin: 30px 0 30px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.button {
    all: unset;
    background-color: #1f1f1f;
    border: 1px rgba(255, 255, 255, 0.1) solid;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px;
    border-radius: 8px;
    cursor: pointer;
}

.button:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

p a {
    color: unset;
}

footer p {
    text-align: center;
    opacity: 0.67;
}
