/* 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." */
   
@font-face {
  font-family: Determination;
  src: url("/determination.ttf");
}

body {
  background-color: white;
  color: #45543D;
  margin: 0;
  font-family: Determination, sans-serif;
  background-image: url("/fishies.png");
  background-repeat: repeat;
}

header {
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  width: 100%;
  font-family: sans-serif;
}

.body {
  background-color: #E9EFD5;
  padding: 7px;
  font-family: sans-serif;
}

.header {
  display: flex;
  background-color: #77A34E;
  color: white;
}

.header a {
  height: auto;
}

.page-button {
  margin: 0 0 0 5px;
  border-radius: 0;
  border: 0;
  color: white;
  background-color: #91b867;
  height: 100%;
  width: 10vw;
  word-wrap: break-word;
  transition-duration: 0.2s;
}

.page-button:hover {
  width: 12vw;
  border-bottom: 3px solid white;
}

.line {
  height: 7px;
  background-color: #E9EFD5;
  content: "<br";
  
  margin-top: 7px;
}

header .line {
  margin-top: 0;
}

header h1 {
  font-size: 40px;
  padding: 0 10px 0 10px;
}

#searchbar {
  background-color: transparent;
  color: white;
  border: 0;
  border-bottom: 3px solid white;
  position: static;
  bottom: 3px;
  width: 300px;
  max-width: 50vw;
  border-radius: 0;
}

#search {
  height: 30px;
  width: 60px;
  border: 0;
  border-radius: 5px;
  background-color: #CDE79E;
}
#search img {
  height: 100%;
}

.point {
  background-color: #91b867;
  color: white;
  border-radius: 5px;
  margin: auto;
  text-align: center;
  width: 30px;
  height: 30px;
}

.point-body {
  display: grid;
  grid: 30px auto / 30px auto;
  column-gap: 5px;
  margin: 10px;
}
.point-body h2 {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}
.point-body p {
  grid-column: 2 / 3;
  grid-row: 3 / 5;
}
.point-body img, .tenor-gif-embed {
  grid-column: 2 / 3;
  grid-row: 5 / 6;
  width: 400px;
  max-width: 100%;
  padding-top: 5px;
}

.point-line {
  content: "<br>";
  width: 3px;
  height: 100%;
  grid-column: 1 / 2;
  grid-row: 2 / 6;
  background-color: #77A34E;
  margin: auto;
  margin-top: 5px;
  border-radius: 3px;
}

.icon {
  height: 10px;
}

a:link {
  color: #91b867;
}

a:visited {
  color: #45543D
}

h1, h2, p {
  margin: 0;
}