@font-face {
  font-family: 'Open Sans';
  src: url(./../fonts/OpenSans-Light.ttf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

html {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body {
  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;
  width: 100%;
  height: 100%;
}

body main {
  margin: 1rem 10%;
  background-color: #333;
  width: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 0px 0px;
          box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 0px 0px;
  position: relative;
}

div.bg-container {
  position: fixed;
  background-image: url("./../assets/bg.jpg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

div.bg-container div.bg-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, right top, from(#cd5c5caa), color-stop(#d36f6eaa), color-stop(#d88281aa), color-stop(#db9494aa), to(#dea6a6aa));
  background-image: linear-gradient(to right top, #cd5c5caa, #d36f6eaa, #d88281aa, #db9494aa, #dea6a6aa);
}

.logo-container {
  padding: 1rem 2.5rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  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;
}

.logo-container img {
  width: 300px;
  max-width: 100%;
}

.tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 1rem;
}

.tab-container .tab-category {
  padding: 1rem 1rem 2rem 1rem;
  margin: 1rem;
  background-color: #111;
  width: 30%;
}

.tab-container .tab-category .tab-category-title {
  color: ghostwhite;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
}

.tab-container .tab-category .tab-category-title:after {
  content: "";
  background-color: indianred;
  right: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  position: absolute;
  margin-right: 0.5rem;
}

.tab-container .tab-category .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.tab-container .tab-category .tab-image {
  width: 100%;
}

.btn-container {
  position: absolute;
  left: 0;
  top: 0;
  padding: 1rem 0;
  margin: 1rem 0.5rem;
}

.tab {
  color: ghostwhite;
  padding: 1rem;
  margin: 0 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
  border: solid thin indianred;
  overflow: hidden;
}

.tab:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  background: indianred;
  z-index: -1;
}

.tab:hover:after {
  width: 100%;
}

.tab[href="#"] {
  border-color: dimgray;
  cursor: not-allowed;
}

.tab[href="#"]:after {
  background-color: dimgray;
}

.tab:after {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

@media only screen and (max-width: 768px) {
  main {
    margin: 1rem !important;
  }
}
/*# sourceMappingURL=style.css.map */