@font-face {
  font-family: "HaloHandLetter";
  src: URL("../fonts/halohandletter.ttf") format("truetype");
}

@font-face {
  font-family: "Borel";
  src: URL("../fonts/Borel-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "USPlaywrite";
  src: URL("../fonts/PlaywriteUSModern-VariableFont_wght.ttf")
    format("truetype");
}

@font-face {
  font-family: "Sharpie";
  src: URL("../fonts/Sharpie-Regular.ttf") format("truetype");
}

:root {
  --beige: #f5ede6;
  --pink: #f49390;
  --light-pink: #ffcfcd;
  --green: #74a12a;
  --orange: #e09357;
  --darkorange: #d45629;
  --red: #b80c09;
  --brown: #8e663e;
  --darkbrown: #63401c;
  --white: #ffffff;
  --black: #000000;
  --yellow: #ffc44d;
  --blue: #5196a0;
  --light-grey: #e8e8e8;
}

html {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../graphics/backgrounds/black-flowers.jpg);
  cursor: url(../graphics/cursors/bee.png), auto !important;
}

body {
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  font-family: "USPlaywrite";
  position: relative;
}

h1 {
  text-align: center;
  font-size: 45px;
  font-family: "Borel";
  margin-top: 100px;
  text-transform: capitalize;
}

.quote {
  background-image: url(../graphics/backgrounds/6chat-ladybug.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 120px;
  width: 200px;
  position: absolute;
  right: 0;
}

.quote div {
  text-align: center;
  text-transform: capitalize;
  font-family: "Borel";
  width: 150px;
  color: var(--black);
  margin: 30px 0 0 10px;
  font-size: 14px;
  line-height: 20px;
}

.snack-wrap {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-image: url("../graphics/backgrounds/blue-checkered.png");
  padding: 50px 0;
  border: 10px solid transparent;
  border-image: url(../graphics/backgrounds/checkered-lace.png) 8 round;
  border-radius: 10px;
}

h4 {
  max-width: 200px;
  padding: 15px;
  margin: 0;
  font-weight: 400;
  text-transform: lowercase;
}

.text {
  width: 200px;
  background-image: url(../graphics/backgrounds/4banner-mushroom.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.right-column {
  width: 100%;
  font-size: 13px;
  overflow-y: scroll;
  scrollbar-width: none;
  overflow-x: hidden;
  padding-top: 100px;
}

.snack {
  text-align: center;
  width: fit-content;
}

.snack img {
  max-height: 200px;
}

.snack img:hover {
  animation: shake 1s infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

h5 {
  color: var(--black);
  padding: 7px 0 0 0;
  margin: 0;
  text-decoration: underline;
}

.home {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--white);
  text-decoration: none;
  font-family: "Sharpie";
  font-size: 20px;
  text-transform: uppercase;
  z-index: 10;
}
