@import url("font.css");
@import url("animation.css");
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

:root {
  --font-joseph: 'JosefinSans-Regular';
  --font-royal-fight: 'RoyalFighter-2O7JW';
  --font-library: 'Library3am-5V3Z';
  --font-mongo: 'MoongladeDemoBold-jOzM';
  --font-plaything: 'MandatoryPlaything-nRRd0';
  --bg-col: rgb(16, 24, 32);
}

a,
a:hover {
  text-decoration: none;
}

body {
  min-height: 100vh;
  background: var(--bg-col);
  color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.9))), url("../img/background.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url("../img/background.jpg");
}

.banner {
  height: 100vh;
  position: relative;
}

.banner nav {
  width: 90%;
  margin: 0 auto;
}

.banner nav ul {
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  font-size: 20px;
}

.banner nav ul li:nth-child(1), .banner nav ul li:nth-child(2) {
  font-family: 'Trade Winds';
  -webkit-animation: fadeIn 1.8s ease-in;
          animation: fadeIn 1.8s ease-in;
}

.banner nav ul li a {
  color: white;
  font-family: 'Trade Winds';
}

.banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  height: 80vh;
  overflow: hidden;
  font-family: var(--font-royal-fight);
}

.banner-text p {
  font-size: 60px;
  margin: 20px 0px;
  letter-spacing: 10px;
}

.banner-text p span:nth-child(1) {
  display: inline-block;
  -webkit-animation: slideLeftIn 1.2s ease-in-out;
          animation: slideLeftIn 1.2s ease-in-out;
}

.banner-text p span:nth-child(2) {
  display: inline-block;
  -webkit-animation: slideRightIn 1.3s ease-in-out;
          animation: slideRightIn 1.3s ease-in-out;
}

.banner-text p span:last-child {
  display: inline-block;
  -webkit-animation: slideDown 1.4s ease-in-out;
          animation: slideDown 1.4s ease-in-out;
}

.banner-text button {
  font-family: var(--font-library);
  background: none;
  color: white;
  border-width: 2px;
  border-radius: 4px;
  width: 108px;
  height: 40px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-animation: btnGrow 2s .40s, fadeIn2 2s;
          animation: btnGrow 2s .40s, fadeIn2 2s;
  transition: .5s ease-in-out;
}

.banner-text button:hover {
  background: white;
  height: 40px;
  font-weight: bold;
  color: var(--bg-col);
}

.banner-text button a {
  color: white;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.banner-text button:hover a {
  color: var(--bg-col);
}

#list {
  min-height: 80vh;
  width: 70vw;
  margin: 0 auto;
}

#list h1 {
  font-family: var(--font-mongo);
  font-size: 30px;
  text-decoration: underline;
  text-align: center;
}

.list {
  margin: 10px 0px;
}

.list table {
  margin: 0 auto;
  margin-top: 40px;
}

.list table tr {
  font-family: var(--font-joseph);
  text-align: center;
  width: 60vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4fr 1fr;
      grid-template-columns: 1fr 4fr 1fr;
}

.list table tr:nth-child(1) {
  padding: 10px 0px;
}

.list table tr:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.list table tr:not(:nth-child(1)) td:not(:nth-child(1)) {
  cursor: pointer;
}

.list table tr:not(:nth-child(1)):hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 6px;
}

.list table tr:not(:nth-child(1)):hover a:no {
  color: white;
}

.list table tr td {
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list table tr td a {
  color: white;
  display: block;
  width: 100%;
  padding: 10px 0px;
}
/*# sourceMappingURL=style.css.map */