/*     -----     Set up, reset, and variables     -----     */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --grey: hsl(216,3%,66%);
  --brand-main: hsl(186, 95%, 16%);
  --background: hsl(90, 30%, 8%);
}

/* This is for only testing and outlines everyting in pink so I can see what's what, safely ignore */
/* * { border: 1px pink solid} */


/*     -----     Main Block Elements     -----     */

body {
    background-color: var(--background);
    /* background-image: url("FPOnonyaFPO.jpg"); */
    background-repeat: no-repeat;
    background-position: right top;
    background-blend-mode: multiply;
    font-family: 'Open Sans', 'LatoSans', 'Roboto Light', sans-serif;
}

#contentContainer {
  height: 90vh;
  color:beige;
  text-align: center;
  display: flex;
  flex-flow: column;
  padding: 1rem;
  /* justify-content: center;
  align-items: center;
  vertical-align: middle; */
}

.displayCard {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  align-items: center;
}

#cardImage {
  width: 80%;
}


#footer {
    height: 10vh;
    background-color: black;
    color: beige;
    text-align: center;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;
    position: sticky;
    bottom: 0;
}

#footer > div {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: 0.3s;
}

#footer div:hover {
  background-color: #333;
}

#leftBtn, #rightBtn {
  height: 50%;
  color: white;
}

#leftBtn {
  rotate: -90deg;
}

#rightBtn {
  rotate: 90deg;
}