* {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;

  background-color: #fc4243;
 }

 .counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
   
 }

 .box {
  margin-top: 30px;
  margin-left: 10px;
 }

h1 {
  width: 100%;

  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
}

.span {
  display: block;
  margin-top: 10px;

  font-size: 20px;
  color: #fff;
}

.input {
  width: 300px;
  height: 30px;
  padding: 5px;

  font-size: 18px;
  font-weight: 500;

  border: 0;;
  border-radius: 5px;
}

.input:focus {
  outline: none;
}