html, body {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
  font-family: Open Sans, sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.iframe-container {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
}

.iframe-container > iframe {
  border: 0;
  width: 100%;
  flex: 1;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 10px 10px 10px;
  background-color: #1b1b1b;
  /* border: solid 1px rgb(255, 25, 0); */
  border-top: solid 0.05px rgb(255, 137, 53);
}

.controls > * {
  padding: 10px;
  margin-left: 10px;
  margin-left: 5px;
  margin-bottom: 50px;
}

button {
  display: inline-block;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 500px;
  transition-property: background-color, border-color, color, box-shadow, filter;
  transition-duration: .3s;
  border: 1px solid transparent;
  letter-spacing: 2px;
  min-width: 160px;
  text-transform: uppercase;
  white-space: normal;
  font-weight: 700;
  text-align: center;
  padding: 16px 14px 18px;
  color: #616467;
  box-shadow: inset 0 0 0 2px #616467;
  background-color: transparent;
  height: 48px;
  :hover {
      color: #fff;
      background-color: #616467;
  }
}

button.disabled {
  background-color: #cccccc;
}

@media only screen and (max-width: 430px) {
  .controls {
    flex-wrap: wrap;
    padding-top: 20px; /* Moves buttons down */
    padding-bottom: 20px;

  }

  .controls > * {
    padding: 10px; /* Adjust padding for smaller height */
    margin-bottom: 10px; /* Space between each control */
  }

  button {
    min-width: 150px; /* Adjusted button width */
    font-size: 16px; /* Font size for buttons */
    padding: 20px 20px; /* Padding for buttons */
    height: auto; /* Height to fit content */
  }
}


@media only screen and (max-width: 360px) {
  .controls {
    flex-wrap: wrap;
    padding-top: 20px; /* Moves buttons down */
    padding-bottom: 80px;
  }

  .controls > * {
    padding: 10px; /* Adjust padding for smaller height */
    margin-bottom: 10px; /* Space between each control */
  }

  button {
    min-width: 120px; /* Adjusted button width */
    font-size: 16px; /* Font size for buttons */
    padding: 20px 20px; /* Padding for buttons */
    height: auto; /* Height to fit content */
  }
}


