* {
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  color: #343434;
  text-decoration: none;
}

body {
  background-color: #f1f3f8;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  font-size: 1.3rem;
  font-family: sans-serif;
  text-align: center;
  overflow-x: hidden;
}

button,
input {
  background-color: #fff;
  padding: 1rem;
  font-size: 1.2rem;
}
.Pageitions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: 100vw;
  height: 5rem;
  line-height: 5rem;
  background-color: #fff;
  box-shadow: 0px 0px 5rem -35px #000;
}
h1 {
  font-size: 2.5rem;
}
main {
  width: 60rem;
  text-align: left;
  margin-top: 3rem;
  border: 1px solid #8d8d8d36;
  border-radius: 0.3rem;
  border-bottom: none;
}
div {
  width: 100%;
  border-bottom: 1px solid #8d8d8d36;
  height: 4.5rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 1rem 1.5rem;
  transition: all 0.25s ease-in-out;
}
div:hover {
  background-color: #ececec;
}
p {
  font-size: 1.5rem;
}
footer {
  width: 30rem;
  height: 4.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
button {
  width: 5rem;
  font-size: 2rem;
  background-color: #00d3ff;
  transition: all 2.5s ease-in-out;
  cursor: pointer;
}
.active {
  background-color: #00ff75;
}
button:hover {
  transform: skewX(180deg);
  background-color: #00ff77c9;
}
@media only screen and (max-width: 991px) {
  main {
    width: 80vw;
    margin-left: 10vw;
    margin-right: 10vw;
  }
}
@media only screen and (max-width: 576px) {
  main,
  footer {
    width: 94vw;
    margin-left: 3vw;
    margin-right: 3vw;
  }

  footer {
    gap: 3%;
  }

  button {
    width: auto;
    flex-grow: 1;
  }
}
