/* 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 {
  height: 100%;
}

body {
  font-family: 'garamond';
  /* background-repeat: round; /* Scales the image to fit the container without clipping */
  /* background-repeat: space; /* Evenly distributes the image with spacing */
  cursor: url('cursors/cherry-cursor.gif'), auto; 
  background-image: url('images/leaf-wallpaper.webp');
  background-repeat: repeat;
  margin: 0;
  min-height: 100%;
  /* backdrop-filter: blur(3px);  */
}

.title {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-self: center;
  /* background-color: rgba(220, 188, 188, 0.8); */
  /* background-color: rgba(255, 255, 255, 0.8); */
  border-radius: 8px;
  /* box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); */
  margin-bottom: 10px;
  position: relative;
  padding: 5px;
  font-size: 2rem;
}

.header img {
  padding: 5px;
  /* height: 200%; */
  width: 1.5rem;
}

.nav {
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  justify-self: center;
  align-items: center;
  background-color: rgba(214, 188, 220, 0.7);
  /* border-radius: 5px; */
  /* box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); */
  margin-bottom: 10px;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px rgba(171, 148, 176, 0.7);
  border-style: solid none;
}

.nav a {
  margin: 5px;
  color: #6d5978;
  font-size: 1.5rem;
}

.banner {
  width: 100%;
  height: 50px;
  background: url('images/purple-lace-moon-divider.gif'), linear-gradient(0.5turn, rgba(255,255,255,0), rgba(244, 168, 222, 0.4), rgba(255,255,255,0));
  background-repeat: repeat-x;
}

.main {
  width: 90%;
  height: fit-content;
  display: flex;
  justify-content: space-around;
  justify-self: center;
  align-items: space-around;
  flex-direction: row;
  margin-bottom: 10px;
  padding: 15px;
}

.content {
  width: 70%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* border-radius: 10px; */
  /* box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); */
  margin-bottom: 10px;
  /* padding: 15px; */
}

.content-section {
  padding: 15px;
  width: 100%;
  border: 1px rgba(171, 148, 176, 0.7);
  border-style: solid;
  background-color: rgba(214, 188, 220, 0.7);
}

.sidebar {
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  /* justify-self: right; */
  align-items: center;
  flex-direction: column;
  background-color: rgba(214, 188, 220, 0.7);
  /* border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3); */
  margin-bottom: 10px;
  padding: 15px;
  border: 1px rgba(171, 148, 176, 0.7);
  border-style: solid;
}

.poll {
  margin-bottom: 20px;
}

.sidebar p {
  font-family: 'pixel';
  font-size: 0.7rem;
}

.poll {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.mood {
  /* position: absolute;
  bottom: 5vh; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: fit-content;
  background-color: rgba(255, 249, 222, 0.5);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  align-self: center;
  margin-top: 10px;
}

.mood p {
  font-family: 'pixel';
  font-size: 0.6rem;
  display: flex;
  align-self: center;
  flex-wrap: wrap;
}

.mood img {
  display: flex;
  align-self: center;
  min-width: 40%;
  margin-bottom: 5px;
}

.home {
  position: absolute;
  bottom: 5vh;
}

/*----- fonts & text styling -----*/

h2 {
  text-align: center;
  font-family:'garamond';
  color: #6d5978;
  margin: 5px;
}

h3 {
  font-family:'garamond';
  text-align: center;
}

p {
  text-align: center;
  font-family: 'garamond';
  color: #6d5978;
}

a {
  text-decoration: wavy underline 1px #d7b8e6;
  color: #50405a;
  text-align: center;
}

@font-face {
  font-family: 'neophyte'; /* Give your font a unique name */
  src: url('fonts/neophyte.ttf') format('truetype'); /* Adjust the path to your font file */
  font-weight: normal; /* Optional: define weight */
  font-style: normal; /* Optional: define style */
}

@font-face {
  font-family: 'garamond';
  src: url('fonts/AppleGaramond-Light.ttf') format('truetype');
  font-weight: normal; /* Optional: define weight */
  font-style: normal; /* Optional: define style */
}

@font-face {
  font-family: 'pixel';
  src: url('fonts/pixelmix.ttf') format('truetype');
}