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

.spin {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*fonts--------------------------------------------------------------------------------------------*/


@font-face {
  font-family: 'rondure-regular';
  src: url(https://amanita-house.neocities.org/rondure-regular.woff);
  
}

@font-face {
  font-family: 'Tomorrow-Regular';
  src: url(https://amanita-house.neocities.org/Tomorrow-Regular.ttf);
}

@font-face {
  font-family: 'Tomorrow-BoldItalic';
  src: url(https://amanita-house.neocities.org/Tomorrow-BoldItalic.ttf);
}

/*content------------------------------------------------------------------------------------------*/

body {
  background-image: url(bgforest.png);
  background-color: green;
  color: white;
  font-family: Verdana;
}

#container {
  width: 900px;
  margin: 0 auto;
  
}

#homequote {
  font-family: "Tomorrow-BoldItalic";
  text-align: center;
  font-size: 40px;
}

#header {
  height: 200px;
  width: 100%;
  background-color: purple;
  background-image: url(headerbgleaves.png);
  background-size: 40%;
}

#titlebox {
  position: relative;
  border-style: solid;
  background-color: black;
  margin-left: 30px;
  margin-right: 30px;
  top: 50px;
}

#navbar {
  height: 40px;
  width: 100%;
  background-color: #176628;
  
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
  font-family: "Tomorrow-Regular";
}

            
#navbar li a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #a49cba;
  text-decoration: underline;
}

#flex {
  display: flex;
}

aside {
  width: 160px;
  background-color: #35AB4D;
  padding: 20px;
}

main {
  flex: 1;
  background-color: maroon;
}

#footer {
  width: 100%;
  height: 40px;
  background-color: #176628;
}

h1 {
  text-align: center;
  font-family: "rondure-regular";
  font-size: 40px;
}

h2 {
  font-family: "Tomorrow-Regular";
}

#buttonwall {
  background-color: black;
  border: 1px solid white;
  padding: 10px;
}

#buttonlist {
  text-align: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#centermushroom {
  display: flex;
  justify-content: center;
}  

#headliner {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.bodytext {
  text-align: center;
  padding: 20px;
}

#underconstruction {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/*media query----------------------------------------------------------*/



