@charset "UTF-8";
:root {
  --red: #e80929;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: serif;
  line-height: 1.75;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  box-sizing: border-box;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  width: 95%;
}

.container input[type=text] {
  width: 95%;
  max-width: 600px;
  padding: 10px 20px;
  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  font-family: serif;
  box-sizing: border-box;
}

.container input[type=submit] {
  padding: 5px 50px;
  background-color: var(--red);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  transition: all ease 0.5s;
  letter-spacing: 2px;
  margin-top: 40px;
  filter: drop-shadow(0px 0px 0px #7e0707);
}
.container input[type=submit]:hover {
  transform: translate(-5px, -5px);
  filter: drop-shadow(5px 5px 0px #7e0707);
}

input {
  display: block;
  margin: 0 auto;
}

h3 {
  color: var(--red);
  font-size: 5rem;
  font-family: Arial, sans-serif;
  text-align: center;
  line-height: 1.2;
}
h3 span {
  display: block;
  font-size: 2.4rem;
}

h4 {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

h5 {
  font-size: 2rem;
  font-family: Arial, sans-serif;
  margin-bottom: 0;
  margin-top: 70px;
  font-weight: normal;
}

.sub_txt {
  font-size: 2.6rem;
  text-align: center;
  margin: 0 auto 60px;
}

.logo {
  max-width: 530px;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
}

.attention {
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  padding-left: 0;
}
.attention li {
  text-indent: -1.5rem;
  padding-left: 1.5rem;
  list-style: none;
}

.reload,
.download {
  padding: 5px 50px;
  background-color: var(--red);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  transition: all ease 0.5s;
  margin: 0 auto;
  letter-spacing: 2px;
  margin-top: 40px;
  filter: drop-shadow(0px 0px 0px #7e0707);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  /* margin: 0 auto; */
  text-decoration: none;
}
.reload:hover,
.download:hover {
  transform: translate(-5px, -5px);
  filter: drop-shadow(5px 5px 0px #7e0707);
}

.reload::before {
  content: "▲";
  width: 30px;
  height: 30px;
  transform: rotate(-90deg);
  color: #fff;
  display: inline-block;
  position: absolute;
  left: 10px;
}

.download_wrap {
  padding: 20px 20px 40px;
  border: 1px solid var(--red);
}/*# sourceMappingURL=style.css.map */

@media (max-width: 428px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  h5 {
    text-align: center;
  }

  .attention li {
    word-wrap: break-word;
  }
}
