body {
  margin: 0;
  padding: 0;
  background-color: rgba(207, 204, 204, 0.808);
}
.heading {
  display: flex;
  justify-content: center;
}
.box {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#first {
  text-align: center;
  font-style: italic;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 2rem;
  min-width: 10rem;
  min-height: 10rem;
  background: no-repeat url('psr.jpg');
  background-size: 10rem 10rem;
  border: 5px solid rgb(39, 38, 38);
  border-radius: 5px;
  color: rgba(255, 49, 49, 0.945);
}
#second {
  text-align: center;
  font-style: italic;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 2rem;
  min-width: 10rem;
  min-height: 10rem;
  background: no-repeat url('psr.jpg');
  background-size: 10rem 10rem;
  border: 5px solid rgb(39, 38, 38);
  border-radius: 5px;
  color: rgba(226, 138, 23, 0.918);
}
.buttons,
.selction {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.hidden {
  display: none;
}

@media only screen and (max-width: 600px) {
  .heading {
    display: flex;
    justify-content: center;
  }
  .box {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: larger;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  #first {
    text-align: center;
    font-style: italic;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 2rem;
    min-width: 10rem;
    min-height: 10rem;
    background: no-repeat url('psr.jpg');
    background-size: 10rem 10rem;
    border: 5px solid rgb(39, 38, 38);
    border-radius: 5px;
    color: rgba(255, 49, 49, 0.945);
  }
  #second {
    text-align: center;
    font-style: italic;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 2rem;
    min-width: 10rem;
    min-height: 10rem;
    background: no-repeat url('psr.jpg');
    background-size: 10rem 10rem;
    border: 2px solid rgb(39, 38, 38);
    border-radius: 2px;
    color: rgba(226, 138, 23, 0.918);
  }

  .buttons,
  .selction {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
