/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* =============================== Animations and fonts!! =============================== */
@keyframes sepAnimation {
  0% {letter-spacing: 0px;}
  100% {letter-spacing: 24px;}
}
      
@keyframes imageAnimation {
  0% { transform: rotate(0deg);}
  25% { transform: rotate(20deg);}
  50% { transform: rotate(0deg);}
  75% { transform: rotate(-20deg);}
  100% { transform: rotate(0deg);}
}

@keyframes navbuttonbgspin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@keyframes navbuttonicongrow {
  0% {transform: scale(1.0);}
  100% {transform: scale(1.2);}
}

@keyframes petAnimation {
  0% {transform: scale(1,1);}
  50% {transform: scale(1.3,0.7);}
  100% {transform: scale(1,1);}
}


@font-face {
  font-family: "Jersey 10";
  src: url("Jersey10-Regular.ttf")
}
@font-face {
  font-family: "Segoe";
  src: url("segoescb.ttf")
}

@font-face {
  font-family: "nICE";
  src: url("nice.ttf")
}

/* =============================== General HTML Types!! =============================== */

body {
  min-width: 900px;
  background-image: url("media/sunflowers.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center bottom;
  font-family: "nICE", sans-serif;
  font-style: normal;
  cursor: url("beecursor.ico"), default;
  margin: 0;
}

p {
  font-size: 20px;
}

a {
  color: #f9a31b;
  text-decoration:none;
}

a:visited {
  color: #dd7900;
}
smol {
  opacity: 50%; 
  font-size: smaller;
}
h1 {
  text-align: center;
  color: #fef3c0;
  font-family: "Segoe", cursive;
  text-shadow: 0px 0px 16px #ffd541;
  padding-top: 10px;
}
      
h2 {
  text-align: center;
  color: #fef3c0;
  font-family: "Segoe", cursive;
  text-shadow: 0px 0px 12px #ffd541;
}

h4 {
  margin: 4px auto;
  color: #f9a31b;
}

hr {
  border-color: inherit;
  
}

main {
  flex: 1;
  padding: 20px;
 order: 2;
}

aside {
  width: 17%;
  padding: 20px;
}
/* =============================== Classes and ID's!! =============================== */

.container {
  background-image: url("hex_dots_purple.png");
  background-size: 28px 16px;
  color: #ffd541;
  padding: 4px;
  border-width: 4px;
  border-radius: 4px;
  border-style: solid;
  border-color: #ffd541 #ffd541 #dd7900 #f9a31b;
  box-shadow: 10px 10px 4px rgba(0,0,0,0.5);
  margin-bottom: 5px;
}
      
.bigboundingbox {
  max-width: 1000px;
  margin: 0 auto;
}
      
.titlebox {
  animation: sepAnimation 1s;
  max-width: 1000px;
  height: 150px;
  background-color: #242234;
  border-width: 4px;
  border-radius: 16px;
  border-style: solid;
  border-color: #ffd541 #ffd541 #dd7900 #f9a31b;
  padding: 4px;
  box-shadow: 10px 10px 4px rgba(0,0,0,0.5);
}
 
.tiltAnim:hover {
  animation: imageAnimation 1s infinite;
}

.navdiv {
  margin-top: -16px; 
  margin-bottom: -16px;
  margin-left: auto; 
  margin-right: auto; 
  display: flex; 
  text-align: center; 
  height: 32px; 
  width: fit-content;
}
      
.navbuttonimagebox {
  width: 0px; 
  height: 64px; 
  position: absolute; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.navbuttonbox {
  padding-left: 40px; 
  padding-right: 40px
}

.navbuttonbox:hover .navbuttonbg {
  animation: navbuttonbgspin 1s;
  transform: rotate(360deg)
}

.navbuttonbox:hover .navbuttonicon {
  animation: navbuttonicongrow 0.25s;
  transform: scale(1.2)
}

.squish {
  animation: petAnimation 0.25s;
}

.navbanner {
  background-color: #242234;
  width: 100%;
  border-style: solid;
  border-color: #ffd541 #242234 #dd7900 #242234;
  border-width: 4px 0px 4px 0px;
  margin-top: 16px;
  margin-bottom: 10px;
  height: 64px;
}
#logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%);
  filter: drop-shadow(0px 0px 8px #dd7900);
}


  
  