body {
  font-family: "Roboto", sans-serif;
  background-color: #cfd2ba;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.input_number {
  display: block;
  background-color: #cfd2ba;
  width: 500px;
  height: 100px;
  text-align: center;
  font-size: 55px;
  border: none;
  outline: none;
  margin: 0 20px 0 20px;
}

#myNumberInput::-webkit-inner-spin-button,
#myNumberInput::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.out_blocks {
  width: 500px;
  height: 100px;
  font-size: 50px;
  overflow: hidden;
  margin: 0 20px 0 20px;
}

.block_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.text_header {
  text-align: center;
  font-size: 50px;
}

img {
  display: block;
  width: 100px;
  height: 50px;
}

.rate_name {
  font-size: 25px;
}

.flex-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Media query for screens with a minimum width of 1200px */
@media screen and (max-width: 768px) {
  .input_number {
    width: 180px;
    height: 40px;
    font-size: 30px;
  }
  .out_blocks {
    width: 180px;
    height: 40px;
    font-size: 30px;
    overflow: hidden;
  }
  .block_wrapper {
    margin: 10px;
    padding: 10px;
  }
  img {
    display: block;
    width: 80px;
    height: 40px;
  }
  .text_header {
    text-align: center;
    font-size: 35px;
  }
}