/* 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." */

/* top part of each page */
*{
  padding: 0;
  margin: 0;
}

body {
  background-image: url(https://websiteresources.carrd.co/assets/images/image04.jpg?v=f27b5f37);
}

@font-face {
font-family: pixelpoiiz;
src: url(https://dl.dropbox.com/s/6ju4skeoofqwcqu/pixelpoiiz.ttf);
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}


@keyframes hover {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.clover {
  margin: 25px auto 5px auto;
  height: 100px;
  width: 800px;
  background-image: url(https://websiteresources.carrd.co/assets/images/image01.jpg?v=120a94eb);
  border-radius: 5px;
}

.header {
  text-align: center;
  height: 90px;
  width: 790px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  border-style: dashed;
  border-width: thick;
  border-color: #5ca220;
}


/* #f6f1df */

.header h1 {
  color: #3a8200;
  padding-top: 11px;
  font-size: 65px;
  overflow-wrap: break-word;
  font-family: pixelpoiiz;
  text-decoration: underline;
  animation: bounce 0.5s steps(1, end) infinite;
  text-shadow: 0px 0px 10px #5ca220;
}



.homeNav {
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  height: 50px;
  width: 800px;
  border-radius: 20px;
  font-size: 20px;
  background-color: #5ca220;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul {
  list-style-type: none;
  overflow: hidden;
}

li {
  display: inline;
}

li a {
  border-radius: 5px;
  font-family: roboto;
  text-decoration: none;
  color: #f6f1df;
  font-size: 1.3em;
  transition: all 1s;
  padding: 15px 15px;
}

li a:hover {
  background-color: gray;
  transform: scale(1.5);
}


.mainDiv {
  background-color: #f6f1df;
  height: 450px;
  width: 800px;
  margin: 10px auto;
  border-radius: 5px;
  border-width: 5px;
  border-color: #5ca220;
  overflow-y: scroll;
}


/* hobby page */

.hobbyMainDiv {
  display: flex;
  flex-direction: column;
}

h2 {
  font-family: pixelpoiiz;
  text-align: center;
  color: #5ca220;
  padding-top: 20px;
}

.hobbyImgs {
  width: 93.75px;
  height: 93.75px;
  float: left;
}

button:hover {
  transform: scale(1.05);
}

.hobbyDiv {
  margin: 25px 25px 10px 25px;
  height: 93.75px;
  width: 325px;
  text-align: center;
  align-self: flex-end;
  justify-content: center;
}
  
.hobbyBtn {
  font-family: roboto;
  font-size: 15px;
  color: #f6f1df;
  padding: 10px;
  background-color: #5ca220;
  border-radius: 23px;
  border-style: none;
  text-align: center;
  transition: all 0.2s;
}

.div1 {
  margin: 25px 25px 10px 25px;
 }
     
.div2 {
  margin: 10px 25px 25px 25px;
}
      
.hobbyDiv::after {
  content: "";
  clear: both;
  display: table;
}

.buttonDiv {
  height: 93.75px;
  width: 375px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
} 

.everyHobbyDiv {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow-y: scroll;
}
