:root {
    --gold: #B9B48B;
    --ivory: #E9E7DC;
    --black: #3D3D3D;
    --red: #FFAABE;
    --green: #86CEBC;
    --blue: #6AC2FF;

    --red2: #FF5C82;
    --red3: #DE375E;

    --ot_magenta: #F765C9;

}

* {
    box-sizing: border-box;
    margin: 0;
    border: 0;
    text-decoration: none;
}
#noise {
  height: 100%;
  width: 100%;
  background-image: url(./images/noiseFilter.svg);
  background-repeat: repeat;
  filter: contrast(100%);
  z-index: -1;
}
@keyframes slideInRight {
  from {
    transform: translateX(120px);
    opacity: 0;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-120px);
    opacity: 0;
  }
}

@keyframes fadeUp{
  from {
    opacity: 0;
  }
}
body {
    width: 100vw;
    min-width: 300px;
    height: 100%;
    background: linear-gradient(-15deg,#FF5C82,10%,#FFAABE,55%,#6AC2FF,80%,#86CEBC);
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    border: 16px solid white;
    font-family: "Prompt", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.4rem;
    color: white;
}

/* Prompt font options
.prompt-thin {
  font-family: "Prompt", serif;
  font-weight: 100;
  font-style: normal;
}

.prompt-extralight {
  font-family: "Prompt", serif;
  font-weight: 200;
  font-style: normal;
}

.prompt-light {
  font-family: "Prompt", serif;
  font-weight: 300;
  font-style: normal;
}

.prompt-regular {
  font-family: "Prompt", serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-medium {
  font-family: "Prompt", serif;
  font-weight: 500;
  font-style: normal;
}

.prompt-semibold {
  font-family: "Prompt", serif;
  font-weight: 600;
  font-style: normal;
}

.prompt-bold {
  font-family: "Prompt", serif;
  font-weight: 700;
  font-style: normal;
}

.prompt-extrabold {
  font-family: "Prompt", serif;
  font-weight: 800;
  font-style: normal;
}

.prompt-black {
  font-family: "Prompt", serif;
  font-weight: 900;
  font-style: normal;
}

.prompt-thin-italic {
  font-family: "Prompt", serif;
  font-weight: 100;
  font-style: italic;
}

.prompt-extralight-italic {
  font-family: "Prompt", serif;
  font-weight: 200;
  font-style: italic;
}

.prompt-light-italic {
  font-family: "Prompt", serif;
  font-weight: 300;
  font-style: italic;
}

.prompt-regular-italic {
  font-family: "Prompt", serif;
  font-weight: 400;
  font-style: italic;
}

.prompt-medium-italic {
  font-family: "Prompt", serif;
  font-weight: 500;
  font-style: italic;
}

.prompt-semibold-italic {
  font-family: "Prompt", serif;
  font-weight: 600;
  font-style: italic;
}

.prompt-bold-italic {
  font-family: "Prompt", serif;
  font-weight: 700;
  font-style: italic;
}

.prompt-extrabold-italic {
  font-family: "Prompt", serif;
  font-weight: 800;
  font-style: italic;
}

.prompt-black-italic {
  font-family: "Prompt", serif;
  font-weight: 900;
  font-style: italic;
}
 */
header, footer {
    display: grid;
    justify-content: center;
    padding: 4rem;
}

#headline {
  margin: 12px auto;
}

/* .menu {
    position: absolute;
    right: 8vw;
    top: 4vh;
    width: 12dvw;
    min-width: 130px;
    min-height: 130px;
    text-align: left;
    padding: 20px;
    background: var(--red2);
    border-radius: 20px;
}
.menu a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding-left: 1rem;
} */

.gridWrapper {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr 320px 1fr;
}

section {
  grid-column: 2;
  width: auto;
  text-wrap: pretty;
  padding: .4rem;
  align-items: space-between;
}

#headerLogo, #footerLogo {
  height: 5rem;
  width: auto;
  mix-blend-mode: overlay;
  animation: fadeUp 4s forwards;
}
#headline {
  animation: slideInLeft 2s forwards;
}

h1 {
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  mix-blend-mode: overlay;
  letter-spacing: .1rem;
  /* color: var(--black); */
}

.colourType {
  color: var(--black);
  opacity: .75;
  animation: slideInRight 3s forwards;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.whiteType {
  animation: slideInLeft 3s forwards;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
