* {
    padding: 0;
    margin: 0;
    font-family: 'Secular One', sans-serif;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #000000 #7f7f7f;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: rgba(255,255,255,0);
}

*::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 0px;
    border: 0px solid #ffffff;
}

:root {
    --primary: #023047;
    --secondary: #219ebc;
    --tertiary: #8ecae6;
    --accent: #ffb703;
    --accentsecondary: #fb8500;
}

header {
    width: 100%;
}

body {
    background-color: #111111;
}

#bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(2px);
    position: fixed;
    top: -10px;
    left: -10px;
    height: 100%;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    transform: scale(1.1);
    background-color: #00829c;
}

div.bigblock, div.smallblock {
    width: 100%;
}

div.bigblock {
    background-color: rgba(0,0,0,0.5);
    text-align: center;
    color: white;
    --bordercolor: white;
}

div.bigblock.extrapadding {
    padding-top: 80px;
    padding-bottom: 80px;
}

div.fullblock {
    min-height: 100vh;
}

div.halfblock {
    min-height: 50vh;
}

div.bigblock p {
    font-size: 2em;
    color: inherit;
    width: 90%;
    margin: auto;
}

div.bigblock a, div.smallblock a {
    color: inherit;
}

div.bigblock h1 {
    font-size: 4em;
    color: inherit;
    text-decoration:underline;
    text-decoration-skip: spaces;
    width: 90%;
    margin: auto;
}

div.smallblock {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(0,0,0,0.5);
    text-align: center;
    height: max-content;
    color: white;
    --bordercolor: white;
}

div.smallblock p {
    font-size: 1.25em;
    color: inherit;
    width: 90%;
    margin: auto;
}

div.explanationblock {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgba(0,0,0,0.5);
    text-align: center;
    min-height: 100vh;
}

div.explanationblock p {
    font-size: 2em;
    color: inherit;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

div.bigblock:nth-of-type(2n), div.smallblock:nth-of-type(2n) {
    background-color: rgba(255,255,255,0.5);
    color: black;
    --bordercolor: black;
}

div.explanationblock:nth-of-type(2n) {
    background-color: rgba(255,255,255,0.5);
}

div.explanationblock:nth-of-type(2n) p {
    color: black;
}

div.timeestimate {
    width: max-content;
    margin: 0 auto;
    border: 2px solid red;
    background-color: black;
    word-wrap: break-word;
}

div.timeestimate p {
    color: white;
    padding: 4px;
}

div p.ip {
    font-size: 45px;
    background-color: black;
    border: 4px inset gray;
    width: max-content !important;
    color: #bbb !important;
    margin: 0 auto !important;
    padding: 0 10px;
}

h2.pagetitle {
    font-size: 3em;
    font-weight: 500;
    margin-bottom: 10px;
}

.mctext {
    font-family: 'VT323', monospace;
}

.mctextheavy {
    font-family: 'Minecraft', sans-serif;
}

h1.construction {
    color: orange !important;
    text-decoration: wavy yellow underline !important;
}

.padding5px {
    padding: 5px 0;
}

@media only screen and (max-width: 850px) {

    div.bigblock h1 {
        font-size: 2.5em;
    }

    div.bigblock p {
        font-size: 1.25em;
    }

    div p.ip {
        font-size: 1.5em;
    }

}

@media only screen and (max-width: 500px) {

    div.bigblock h1 {
        font-size: 1.75em;
    }

}

@media only screen and (max-width: 400px) {

    div.bigblock h1 {
        font-size: 1.75em;
    }

}
