body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #ffffff;
}

header,
footer {
  background-color: #2ea4c5;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.header-containdfhb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eb327c;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
}

.header-title {
  font-size: 24px;
}

.header-button {
  font-size: 16px;
  padding: 10px 20px;
  background-color: #a600f9;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.content {
  padding: 20px;
}

h1 {
  font-size: 36px;
  color: #000000;
  text-align: center;
}

h2 {
  font-size: 28px;
  color: #000000;
}

h3 {
  font-size: 22px;
  color: #000000;
}

p {
  font-size: 16px;
  color: #000000;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bolder;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th,
td {
  padding: 10px;
  border: 1px solid #ff02d1;
  text-align: center;
}

th {
  background-color: #4a0061;
  color: #ffffff;
  text-align: center;
}

ul,
ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f304b7;
}

img {
  max-width: 100%;
  height: auto;
}
.contain {
  display: grid;
  place-items: center;
}

button {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border: 3px solid #ff0072;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #ff0072;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}
.sugarrushtable {
  overflow-x: scroll;
  width: 100%;
}
button:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #ff0072;
  z-index: -1;
}

button:hover,
button:focus {
  color: rgb(246, 157, 225);
}

button:hover:before,
button:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

button:active {
  transform: scale(0.9);
}

button a {
  color: #fff;

  text-decoration: none;
}

@media (max-width: 767px) {
  .header-containdfhb
  {
    flex-direction: column;
  }

  .header-button {
    margin-top: 10px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }
}
