@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400&display=swap');

html {
  font-size: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-style: normal;
}

body {
  background: #ffffff;
  padding: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-style: normal;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  margin: 0;
}

.logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
  line-height: 1.4;
}

input, select, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  margin: 1rem 0;
  box-sizing: border-box;
}

button,
.btn {
  background-color: black;
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  cursor: pointer;
}

button:hover,
.btn:hover {
  background-color: rgb(22, 22, 22);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: 5rem;
}

header .logo {
  width: 7rem;
}

header nav {
  display: flex;
}

header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}


header nav ul li.nav-item {
  margin: 0;
  padding: 0;
}

header nav ul li.nav-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  line-height: 16px;
  padding: 0.25rem 0.5rem;
  border: none;
  text-decoration: none;
  color: black;
  border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  cursor: pointer;
}

header nav ul.toons li.nav-item a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: .25rem;
}

header nav ul.toons li.nav-item a span {
  font-size: 10px;
}

header nav ul li.nav-item a.nav-btn {
  border: 2px solid #ccc;
}

header nav ul li.nav-item a.nav-btn:hover {
  border-color: #000;
  text-decoration: none;
}

header nav ul li.nav-item a img {
  width: 2rem;
}

header nav ul li.nav-item a span {
  font-size: 16px;
  line-height: 16px;
}

header nav ul li.nav-item a:hover {
  text-decoration: underline;
}

.loading {
  height: calc(100dvh - 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.releases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cta {
  text-align: center;
  font-size: 1.2rem;
  margin: 2rem 0;
}

.cta .swiper {
  margin-bottom: 1rem;
}

.cta .swiper-slide {
  cursor: grab;
}

.cta .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.cta .btn {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 2rem;
  text-decoration: none;
  border: 2px solid;
  transition: opacity 0.2s ease;
}



:root {
  --swiper-navigation-size: .75rem;
  --swiper-theme-color: black;
  --swiper-navigation-sides-offset: 0rem;
}

@media (min-width: 768px) {
  html {
    font-size: 24px;
  }

  body {
    padding: 2rem;
  }

  .releases {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav .toons .name {
    display: none;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  body {
    padding: 0.5rem;
  }

  p {
    line-height: 1.3;
  }
}

@media (max-width: 360px) {
  .nav-item span {
    display: none;
  }
}
