@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Pacifico&family=Readex+Pro:wght@160..700&display=swap');

:root {
    --darkBlue: #01366B;
    --orange: #FA9F1F;
    --lightYellow: #ffee59;
    --dullYellow: #fff7aa;
    --lightBlue: #e7f6ff;
    /* --lightBlueTransp: #e7f6ffc0; */
    --lightBlueTransp: #e7f6ffe0;
    /* --darkOrange: #1a1918; */
    --darkOrange: #302d2b;
}

/* BASE PAGE */
html {
    background-color: var(--lightBlue);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}

html, body {
    height: 100%;
}

body {
    padding-top: 0px;
    margin: 0px;
    color: var(--darkOrange);
    font-family: "Readex Pro";

    display: flex;
    flex-direction: column;
}

::selection {
    background-color: var(--orange);
}

.current-page::selection {
        background-color: var(--lightBlue);
}

/* HEADER & FOOTER */
header, footer {
    background-color: var(--darkBlue);
    font-family: "Boogaloo";
    display: grid;
    align-items: center;
    text-align: center;
    color: var(--lightBlue);
}

header {
    font-size: 2em;
}

.current-page {
    color: var(--orange);
    /* background-color: aqua; */
}

.site-name {
    font-family: "Pacifico";
    font-size: 2rem;
}
/* END OF HEADER & FOOTER */


h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

h1 {
    font-family: "Pacifico";
    margin: 0px;
    padding: 10px;
}

h2 {
    font-family: "Boogaloo";
}


main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-background {
    color: var(--darkOrange);
    display: grid;
    grid-template-rows: 1fr;
    gap: 20px;
    justify-items: center;
    background-color: var(--lightBlueTransp);
    width: calc(100svw - 40px);
    padding: 20px;
    p, h1, h2, h3, h4, h5, h6 {
        padding: 0px;
        margin: 0px;
    }
}

@media screen and (min-width: 768px) {
    .content-background {
        max-width: 768px;
        width: calc(100vw - 40px);
        border-radius: 20px;
    }
}
