@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;600&display=swap');

/* START CSSRESET */
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body {
    line-height: 1
}

blockquote, q {
    quotes: none
}

blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

button, input[type="submit"] {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 0;
}

* {
    box-sizing: border-box;
}

body, html {
    scroll-behavior: smooth;
    font-family: 'Work Sans', sans-serif;
}

img {
    max-width: 100%;
}

/* CBO */
body {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow-x: hidden;
    color: #1b2a4b;
}

body:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./splashimg/bgtex.jpg);
    background-size: 40vw;
    background-position: center;
    z-index: -1;
}

@media only screen and (min-height: 800px) {
    body:after {
        background-size: 40vh;
    }
}

strong {
    font-weight: 600;
}

#splash {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    min-height: 99vh;
    padding-bottom: 8vh;
}

#splash img {
    max-height: 80vh;
    max-width: 90vw;
}

#linkfire {
    position: fixed;
    top: 2vw;
    left: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    max-width: 15vw;
    border: 1px solid #1b2c49;
}

#linkfire > img {
    max-width: 15vw;
    max-height: 15vw;
    width: 100%;
}

#linkfire > span {
    text-align: center;
    display: inline-block;
    padding: 1vw;
    line-height: 1.2em;
    width: 100%;
    color: #1b2a4b;
    background: #fbf8ed;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: calc(0.5em + 0.5vw);
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    #linkfire .hide-on-small {
        display: none;
    }
}

#details {
    background: linear-gradient(180deg, rgba(251,249,237,0) 0%, rgba(251,249,237,1) 20%);
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    padding-bottom: 10vh;
}

#details > div {
    width: calc(800px + 10vw);
    max-width: 100%;
    padding: 0 5vw;
    margin: auto;
}

#details p {
    line-height: 1.58em;
    font-size: calc(1em + 0.35vw);
    margin: 2em 0;
}

#details img {
    border-radius: 5px;
}
  
.socials {
    position: fixed;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.socials a {
    font-size: 3vh;
    padding: 1vh;
    color: inherit;
}

#details > .cta-container {
    text-align: center;
    margin-bottom: 2em;
}

.cta {
    display: inline-block;
    font-size: 1.5em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1em;
    color: #fbf8ed;
    background: #1b2a4b;
    text-decoration: unset;
}