
@font-face {
  font-family: Inter;
  src: url('/_fonts/Inter.ttf');
}

* {
  font-family: Inter, san-serif;
}

body {
  margin: 0;
  background: #1d1d1d url('/_images/background-grid.svg') repeat;
  background-size: 64px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  margin-bottom: 24px;
  height: 52px;
  z-index: 9999;
  width: 100%;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(30, 37, 50, 1) 90%,
    rgba(57, 66, 87, 1) 100%
  );
}

@media screen and (min-width: 640px) {
  .header {
    height: 60px;
  }
}

@media screen and (min-width: 1440px) {
  .header {
    height: 72px;
  }
}

.header-menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
  margin-left: 0;
}

@media screen and (min-width: 640px) {
  .header-menu {
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .header-menu {
    justify-content: start;
    margin-left: 96px;
  }
}

.header-menu a {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s;
}

@media screen and (min-width: 1440px) {
  .header-menu a {
    font-size: 24px;
  }
}

.header-menu a:hover {
  transform: translateY(0.125em);
}

/* Header (Mobile)  */

.header-mobile-dropdown {
  position: relative;
  height: 100%;
  padding-left: 32px;
}

.header-mobile-hamburger {
  display: flex;
  align-self: center;
  height: 100%;
}

@media screen and (min-width: 640px) {
  .header-mobile-hamburger {
    display: none;
  }
}

/* Footer */

.footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  height: 32px;
  background: #000000e0;
  text-align: center;
  z-index: 9999;
}

@media screen and (min-width: 1440px) {
  .footer {
    height: 48px;
  }
}

.footer-info {
  width: 80%;
  height: 100%;
  font-size: 8px;
  color: white;

  display: flex;
  justify-self: center;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .footer-info {
    font-size: 11px;
    width: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .footer-info {
    font-size: 14px;
  }
}

.footer-info a {
  text-decoration: none;
  margin: 0;
  color: white;
}

.footer-info a span {
  text-decoration: underline;
}

.container-style {
  box-sizing: border-box;
  border-width: 3px;
  border-style: solid;
  border-color: #ffffff40;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(29, 29, 29, 1) 100%
  );
  height: 100%;
}

@media screen and (min-width: 768px) {
  .container-style {
    border-width: 4px;
  }
}

.container-title-shadow {
  text-shadow: 0px 0px 12px #ffffffb0;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  color: white;
  border-radius: 9999px;
  width: fit-content;
  padding: 4px 8px;
  cursor: pointer;
  border: 2px solid #ffffff80;
  text-decoration: none;
  background-color: black;
  transition: background-color 0.2s;
  &:hover {
    background-color: rgb(21, 21, 21);
  }
}

@media screen and (min-width: 768px) {
  .tag {
    font-size: 14px;
  }
}

@media screen and (min-width: 1440px) {
  .tag {
    font-size: 18px;
  }
}

hr {
  width: 100%;
  color: white;
}

.toast {
  /* hide by default */
  display: none;

  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);

  background-color: black;
  border: 2px solid white;

  padding: 12px 16px;

  color: white;
  z-index: 10000;
  width: 70%;
}

.show-toast {
  display: block !important;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 18px;
    opacity: 0;
  }
  to {
    bottom: 36px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 18px;
    opacity: 0;
  }
  to {
    bottom: 36px;
    opacity: 1;
  }
}

@media screen and (min-width: 640px) {
  .toast {
    width: 50%;
  }
}

.toast .title {
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 6px;
}

.button-container {
  display: flex;
  width: 100%;
  justify-content: end;
}

button {
  margin-top: 10px;
  background-color: black;
  border: 3px solid white;
  color: white;
  padding: 12px 10px;
  font-size: 12px;
  transition:
    background-color 0.2s,
    border 0.2s,
    color 0.2s;
}

button:hover {
  background-color: white;
  border: 3px solid rgb(200, 200, 200);
  color: black;
}

button:hover {
  cursor: pointer;
}

