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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: rgb(69, 186, 221);
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  background: url("./robot.gif");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

button {
  cursor: pointer;
  outline: none;
  width: 200px;
  height: 50px;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  color: white;
  background: rgb(255, 52, 130);
  border: none;
  border-radius: 5px;
  box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.joke-container {
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  padding: 10px;
  color: white;
  background: rgb(255, 52, 130);
  border: none;
  border-radius: 5px;
  box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.2);
  width: 65%;
}

/* Media queries : tablet or smaller */

@media screen and (max-width: 1000px) {
  .container {
    background-size: cover;
    background-position: center center;
  }

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

  .joke-container {
    width: 85%;
  }
}

.copyrights {
  position: absolute;
  bottom: 5px;
  right: 5px;
}
