* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;

}
section {
  width: 450px;
  border: 5px solid rgb(253,253,167);
  background-color: #aaaaaa;
  margin: 0px auto;
  padding: 10px;
  border-radius: 10px;
}
section div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section div h4 {
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
section div p {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;


}
.j {
  background-color: white;
  color: green;
  padding: 3px 0 3px 3px;
}
.p {
  background-color: green;
  color: white;
  padding: 3px;
}

input.text1 {
  width: 100%;
  padding: 5px;
  margin: 2px auto 0 auto;
  border: none;
  outline: none;
  text-align: right;
  font-size: 25px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  background-color: white;
 color: black;
 font-family: 'Bebas Neue', cursive;

}
input.text2 {
  width: 100%;
  padding: 5px;
  margin: 0 auto 2px auto;
  border: none;
  outline: none;
  text-align: right;
  font-size: 40px;
  font-weight: bold;
  border-radius: 0 0 5px 5px;
  background-color: white;
 color: black;
 font-family: 'Bebas Neue', cursive;
}
input[type=button] {
  width: 110px;
  height: 70px;
  font-size: 40px;
  margin: 2px;
  background-color: white;
  border: none;
  outline: none;
  font-weight: bold;
  transition: all .5s;
  border-radius: 5px;
  font-family: 'Bebas Neue', cursive;
}
input[type=button]:hover {
  background-color: #aaaaaa;
}
section .pak {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: 4px;
}

@media screen and (max-width: 700px) {

  body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section {
    width: 95%;
  }
  section div p {
    font-size: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  section .pak {
    text-align: center;
    font-size: 10px;
    margin-top: 10px;
    letter-spacing: 4px;
  }
}