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

html, body {
  font-family: "Cooper Black", sans-serif;
  color: white;

  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-image: url(../images/repeating.png);

}
.wrapper {
  width: 100vw;
  min-height: calc(100vw * 0.75); /* 4:3 height based on width */
  max-width: 133.33vh; /* width = height * 4/3 */
  background-image: linear-gradient(#ff66a3, black);
  overflow: auto; /* scroll if content overflows */
  }

.postwrapper {
  width: 100vw;
  min-height: calc(100vw * 0.75); /* 4:3 height based on width */
  max-width: 133.33vh; /* width = height * 4/3 */
  background-image: linear-gradient(Purple, black);
  overflow: auto; /* scroll if content overflows */
  }
  
.content {
  margin-left: 1vw;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
}

.content h1 {
  color: gold;
  font-size: clamp(2rem, 5vw, 3.5rem);
  filter: drop-shadow(0 0 0.3rem rgba(0, 0, 0, 0.9));
}

.content li {
font-size: clamp(1rem, 1.6vw, 1.3rem);
color: white}

.content p {
  color: white;
  font-size: clamp(1rem, 2vw, 1.6rem);
}

.header {
  background-image: url(../images/bricks.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 10px;
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;}
  
.header img {
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.9));
}

.homebutton { 
  display: block;
  width: 25%;
  max-width: 300px;
  padding-top: 6.8%;
  background-image: url("../images/homebutton.png");
  background-size: 100% 300%;
  background-repeat: no-repeat;
  background-position: top;
  margin-right: 20px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.9));
}

.homebutton:hover {
  background-position: center;
  filter: none;
}

.homebutton:active {
  background-position: bottom;
  filter: none;}
  
.posts-button {
  display: block;
  width: 25%;
  max-width: 300px;
  padding-top: 6.8%;   
  background-image: url("../images/postbutton.png");
  background-size: 100% 300%;
  background-repeat: no-repeat;
  background-position: top;
  margin-right: 20px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.9));
}

.posts-button:hover {
  background-position: center;
  filter: none;
}

.posts-button:active {
  background-position: bottom;
  filter: none;}
  


