/* begin of css file for welly taiko website */

@font-face {
  font-family: taikoFont;
  src: url(../fonts/Eastwood.ttf);
}

body {
  color: black;
  font-family: taikoFont;
  text-align: center;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  body {
    margin-left: 0%;
    margin-right: 0%;
  }
}

a:link {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color:black;
  background-color: transparent;
  text-decoration: underline;
}

/* image rendering shit (make it look good and scale well on desktop/mobile) */

.img-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  text-align: center;
}
.img-container div {
  max-width: 100%;
  height: auto;
  margin: 10%;
  display: block;
}

@media (max-width: 768px) {
  .img-container {
      flex-direction: column;
  }
  .img-container {
      width: 80%;
      margin-left: 10%;
      margin-right: 10%
  }
}

@media (min-width: 769px) {
  .img-container div {
      width: 80%;
  }
}

/* modal? shoutout w3 schools*/
