* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "League Spartan", sans-serif;
}

button {
  cursor: pointer;
}

.start {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100vh;
  width: 100vw;
  background-color: #000;
}
.start__video {
  border: none;
  max-width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
  scale: 1.25;
}
.start__title {
  color: #fff;
  margin: 3rem;
  font-size: 3rem;
}
.start__btn {
  padding: 1rem;
  width: 300px;
  min-height: 30px;
  border-radius: 1rem;
  background-color: #000;
  transition: background-color 0.5s;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border: 2px solid white;
}
.start__btn:hover {
  cursor: pointer;
  background-color: #1a1a1a;
}

.checkSave {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100vh;
  width: 100vw;
  background-color: #000;
}
.checkSave .save-div {
  width: 500px;
  height: 400px;
  margin: 5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.checkSave .save-div__img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.checkSave .save-div__title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border-top: 2px solid #fff;
  padding: 1rem;
}

.styleCheck {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
  background-color: black;
}
.styleCheck__start {
  color: #fff;
  margin: 2rem;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 750px;
  cursor: pointer;
}
.box .theme {
  height: 250px;
  width: 250px;
  border: 2px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.box .theme__img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box .theme__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem;
}
.box .theme .small-font {
  font-size: 1.25rem;
}

.ownStyle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100vw;
  height: 100vh;
}
.ownStyle__title {
  color: #fff;
  font-size: 3rem;
}
.ownStyle__box {
  width: 700px;
  margin: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.ownStyle__box div {
  padding: 1rem;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.ownStyle__label {
  color: #fff;
  padding: 1rem;
  font-weight: bold;
}
.ownStyle__input {
  width: 100%;
  height: 120px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 2rem;
}
.ownStyle__btn {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem;
  margin: 2rem;
}

body {
  background-color: #000;
}

.header {
  margin: 3rem auto;
}
.header__title {
  text-align: center;
  font-size: 6rem;
  color: #fff;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.main .picture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.main .picture__img {
  min-width: 400px;
  max-width: 500px;
  max-height: 500px;
  transition: rotate 0.5s ease;
}
.main .picture__img:hover {
  cursor: pointer;
}
.main .upgrade {
  color: #fff;
}
.main .upgrade__container {
  margin: 2rem 5rem;
}
.main .upgrade__title {
  font-size: 3rem;
  text-indent: 3rem;
}
.main .upgrade__div {
  margin: 1rem;
  padding: 1rem;
  width: clamp(300px, 60%, 500px);
  min-height: 30px;
  border-radius: 1rem;
  transition: background-color 0.5s;
  cursor: pointer;
}
.main .upgrade__text {
  color: #000;
  font-size: 1.75rem;
  font-weight: bold;
}
.main .score-container {
  width: 100%;
  color: #fff;
  font-size: 4rem;
  text-align: center;
  margin-top: 7.5rem;
}

.return-to-home {
  position: absolute;
  top: 25px;
  left: 25px;
}
.return-to-home img {
  height: 100px;
  width: 100px;
}/*# sourceMappingURL=main.css.map */