@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --bloodmoon-color: rgba(181, 41, 48, 0.68);
  --bloodmoon-color-hover: rgba(181, 41, 48, 0.562);
  --hover-color: #bd7847;
  --text-border-color: #5f3816;
  --white-color: #fff;
  --btn-color: #ab6636;
  --body-color: #c07f5aad;
  --btn-border-color: #1a150e;
}

html {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}

body {
  background-color: var(--body-color);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.root {
  text-align: center;
}

.round-title {
  display: flex;
  justify-content: center;
  width: 100%;
}

.round {
  width: 15%;
  margin: 25px 0;
  text-align: center;
  background-color: var(--body-color);
  border-radius: 10px;
  color: var(--white-color);
  -webkit-text-stroke-width: 2.5px;
  -webkit-text-stroke-color: var(--text-border-color);
}

.axie-energy-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.energy-container {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white-color);
  -webkit-text-stroke-width: 2.5px;
  -webkit-text-stroke-color: var(--text-border-color);
}

.energy {
  border: 5px solid var(--text-border-color);
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.energy-buttons {
  display: flex;
  flex: row nowrap;
  justify-content: space-between;
  align-self: center;
}

.energy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  background-color: var(--btn-color);
  border: 2px solid var(--btn-border-color);
  border-radius: 1.5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
}

.energy-btn:hover {
  background-color: var(--hover-color);
  cursor: pointer;
}

.quit-energy,
.add-energy {
  width: 34px;
}

.reset {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  background-color: var(--bloodmoon-color);
  border: 2px solid var(--btn-border-color);
  border-radius: 1.5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
}

.reset:hover {
  background-color: var(--bloodmoon-color-hover);
  cursor: pointer;
}

.bloodmoon-course {
  background-color: var(--bloodmoon-color);
}

@media screen and (max-width: 1024px) {
  .round {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .round {
    width: 25%;
  }
}

@media screen and (max-width: 576px) {
  .round {
    width: 35%;
  }
}

@media screen and (max-width: 480px) {
  .round {
    width: 45%;
  }
}

@media screen and (max-width: 320px) {
  .round {
    width: 60%;
  }
}

@media screen and (max-width: 240px) {
  .round {
    width: 70%;
  }
}

@media screen and (max-width: 200px) {
  .round {
    width: 95%;
  }
}
