@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=DotGothic16&display=swap");

body {
  font-family: 'DotGothic16', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
}

h1,
p {
  margin: 0;
}

.section-title {
  margin-bottom: 1.3rem;
}

.h3 {
  margin: 1rem 0 0;
  font-size: 1rem;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 3.5rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (width < 600px) {
  .main {
    max-width: 300px;
  }
}

@media (width < 600px) {
  .main {
    margin: 3rem 1.5rem;
    gap: 1.5rem;
  }
}

.nes-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.nes-container.is-rounded {
  padding: 2rem 1.5rem 3rem;
}

@media (width < 600px) {
  .nes-container {
    max-width: 300px;
  }
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nes-btn {
  font-size: 1.5rem;
}

.result-section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;

}

.result-section {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.result-title {
  margin: 0;
}

.result-text {
  text-align: center;
}

.table-container {
  position: relative;
}

.nes-table-responsive {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.thead {
  width: 100%;

}

.footer {
  padding: 0 0 3rem;
}