/* ROBOT.GIF from Giphy - https://giphy.com/gifs/robot-cinema-4d-eyedesyn-3o7abtn7DuREEpsyWY */

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #45badd;
}

.content {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.container {
  height: 100%;
  width: 100%;
  margin-left: 5%;
  background: url(./robot.gif) left/48rem no-repeat;
}

.buttons {
  height: 100%;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

button {
  cursor: pointer;
  outline: none;
  width: 200px;
  height: 50px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.50rem;
  color: #fff;
  background-color: #ff3482;
  border: none;
  border-radius: 5px;
  box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.2);
}

button:hover {
  filter: brightness(93%);
}

button:active {
  transform: scale(0.98);
}

button:disabled {
  cursor: default;
  filter: brightness(30%);
}

@media screen and (max-width: 1000px) {
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    margin: 0;
    height: 100%;
    width: 100%;
    background-position: top;
    background-size: 48rem;
  }

  .buttons {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  button {
    box-shadow: 5px 5px 30px 20px rgba(0, 0, 0, 0.2);
  }

  @media screen and (max-height: 900px) {
    .container {
      background-position: center;
    }

    .buttons {
      height: 70%;
      width: 100%;
    }
  }

  @media screen and (max-height: 760px) {
    .container {
      background-position: center;
    }

    .buttons {
      height: 50%;
      width: 100%;
    }
  }

  @media screen and (max-height: 640px) {
    .container {
      background-position: center;
    }

    .buttons {
      height: 30%;
      width: 100%;
    }
  }
}