* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(
    circle,
    rgba(238, 174, 202, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );
  font-family: 'Poppins', sans-serif;
}

h1 {
  text-align: center;
  font-family: 'Handjet', cursive;
  font-size: 5rem;
  margin: 1rem;
}

a {
  text-decoration: none;
  color: black;
}

.big-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10rem;
  justify-content: space-around;
}

.option-container {
  display: flex;
  align-items: center;
}

.grid-size-container {
  margin: 0.5rem;
  padding: 0 0.5rem;
  border: 2px solid #111;
  text-align: center;
}

.grid-container {
  display: grid;
  height: 500px;
  width: 500px;
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.reset-container {
  margin: 0.5rem;
  padding: 0 0.5rem;
  border-radius: 8px;
  /* background-color: #ae91e4; */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.reset-input {
  width: 45px;
  height: 45px;
  border: 2px solid #111;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
}

/**************** button ***************/

.btn-primary {
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  height: 45px;
  margin: 0.5rem;
  padding: 0px 25px;
  background-color: #fee6e3;
  border: 2px solid #111;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  box-shadow: 2px 2px;
}

.btn-primary:hover {
  background-color: #ffdeda;
}

.btn-primary:active,
.input-color:active {
  box-shadow: none;
  top: 2px;
  left: 2px;
}

.input-color {
  position: relative;
  margin: 0.5rem;
  padding: 0 0.5rem;
  width: 70px;
  height: 45px;
  border-radius: 8px;
  box-shadow: 2px 2px;
  cursor: pointer;
}

/******************* Footer ******************/
.footer {
  position: absolute;
  margin: 1rem;
  text-align: center;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
