
/* VARIABLES*/

:root {
    --accent-color: #372C6B;
    --default-border: solid 2px #372C6B;
    --admin-gray: #878787;
}

/* TYPEFACES */

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Light.ttf");
    font-weight: 200;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: "Jumbox";
    src: url("./fonts/JumboxBold-3z0PM.ttf");
    font-weight: 200;
}

/* region: CSS reset, courtesy of joshwcomeau.com/css/custom-css-reset/ */

* { margin: 0; box-sizing: border-box; }
html, body { height: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
#root, #__next { isolation: isolate; }
a {text-decoration: none; color: var(--accent-color)}

/* endregion */

/* GLOBAL STYLES*/

body {
    font-family: "Inter", "Helvetica Neue", "Helvetica", sans-serif;
    font-size: 12pt;
    font-weight: 500;

    background-color: white;
    color: black;
}

.default-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.default-container {
    width: 90vw;
    max-width: 900px;
}

.default-button {
    color: white;
    background-color: var(--accent-color);
    font-family: "Jumbox", sans-serif;
    font-size: 12pt;
    padding: 12px 18px 8px;
    outline: none;
    border: solid 2px white;
    transition-duration: 300ms;
    cursor: pointer;
    /* Alternate Button hover effect: */
    /*border: none;*/
}

.default-button:hover {
    transform: translate(-8px, -8px);
    box-shadow: 8px 8px var(--accent-color);
    /* Alternate Button hover effect: */
    /*box-shadow: 10px 10px 0 -5px white, 10px 10px var(--accent-color);*/
}

.page-title {
    font-family: "Jumbox", sans-serif;
    font-size: 40pt;
    line-height: 1;
}

/***** MOBILE *****/

@media (max-width: 600px) {

    .default-container {
        width: 85vw;
    }

    .page-title {
        font-size: 28pt;
    }

}

