/* -- Fonts --*/
@font-face {
  font-family: 'Karla';
  src: url('fonts/karla-v31-latin-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Karla';
  src: url('fonts/karla-v31-latin-800.woff2') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'FUCXEDCAPS';
  src: url('fonts/FUCXEDCAPSLatin-Regular.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

/* -- Colors --*/
:root {
    --pink: #fac3c3;
    --yellow: #fff402;
    --red: #fe3101;
}

.pink {color: var(--pink);}
.yellow {color: var(--yellow);}
.red {color: var(--red);}


/* -- General --*/

* {
    box-sizing: border-box;
}
body {
  font: 1.25rem 'FUCXEDCAPS', serif;
  text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  margin: 0 auto;
  padding: 0;
  background-color: var(--pink);
  text-align:center;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

ul {
    max-width: 600px;
    text-align: left;
    font-size: 1.5rem;
}

ul li {
    margin-bottom: 20px;
}

/* -- Language switch -- */
a.lang-switch {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: white;
    font-family: "FUCXEDCAPS";
}

/* -- Header -- */
header {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    color: white;
    font-family: "FUCXEDCAPS";
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}

header img {
    padding: 50px 20px 30px 20px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 700px;
    margin: 0 auto;
}

header div.next-action {
    background-color: #FFFFFF;
    text-align: center;
    padding: 50px 10px;
    color: black;
    font-size: 3rem;
}

@media(max-width: 500px) {
    header {
        height: auto;
    }

    header div.next-action {
        padding: 30px 10px;
    }

    header img {
        padding: 30px 10px 30px 10px;
    }
}

h1 {
    background-color: white;
    color: black;
}

/* -- Info -- */
section.streamer {
    display: block;
    padding: 2vh 2vw ;
    color: black;
    font-family: "FUCXEDCAPS";
    text-align: center;
    background-color: white;
}

section.streamer p {
    font-size: 2rem;
}

section.streamer a {
    color: black;
}

@media(max-width: 700px) {
    section.streamer {
        font-size: 2rem;
    }
}

@media(max-width: 700px) {
    section.streamer {
        font-size: 2rem;
    }
}

/* -- Socials -- */
section.socials {
    padding-top: 30px;
    place-content: center;
    background-color: var(--red);
    padding: 2vh 2vw ;
    font-family: "FUCXEDCAPS";
    grid-template-columns: 50% 50%;
}

section.socials ul a {
    font-size: 1.5rem;
    border-bottom: solid;
    border-width: 2px;
    color: white;
}

section.socials div {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 2vw;
    row-gap: 80px;
    width: 100%;
    max-width: 600px;
    font-size: 3rem;
    margin: 5vh auto;
}

@media(max-width: 400px) {
    section.socials div {
        grid-template-columns: 100%;
    }
}

section.socials a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
}

section.socials img {
    display: inline-block;
    width: 5vw;
    height: auto;
    min-width: 100px;
    margin-bottom: 10px;
}

/* -- Description -- */
section.description {
    display: grid;
    font-family: 'Karla', serif;
    place-content: center;
    padding: 10px;
    color: black;
}

section.description p {
    display: block;
    max-width: 600px;
    text-align: left;
    font-size: 1.5rem;
}

/* -- Materials -- */

section.materials {
}

section.materials h2 {
}

section.materials h3 {
    font-size: 2rem;
}

section.materials ul {
    margin: 0 auto 60px auto;
}

section.materials ul li a {
    font-family: 'Karla', serif;
    color: black;
}

/* Posts */
ul.posts summary {
    cursor: pointer;
}

ul.posts details div {
    text-align: left;
    font-weight: normal;
    font-family: 'Karla', serif;
}

ul.posts details div a {
    text-decoration: underline;
}
