.controls-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 900px;
  height: 480px;
  border-radius: 10px;
  border: 2px solid white;
  background-image: url(../img/portal.png);
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.controls-content-top {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Roboto", serif;
  font-size: 16px;
  padding-top: 16px;
  color: red;
  text-shadow: 2px 2px 3px black;
}

.controls-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Roboto", serif;
  font-size: 16px;
  color: #efefef;
}

.controls-content-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
}

.controls-images {
  width: 64px;
  height: 32px;
}

@media only screen and (max-width: 1000px) {
  .controls-wrapper {
    width: 100%;
    height: 100vh;
    justify-content: space-around;
    background-position: bottom;
    background-size: cover;
    border: none;
    border-radius: 0px;
  }
}
