html {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #45dadd;
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* https://giphy.com/gifs/dancing-happy-mIZ9rPeMKefm0 - image from weblink above, all right reserved for those who prepared, image usage for studies purposes only */
  background: url("https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExYWdrb3g5ZHo0OG1lM2F1aWExZGNwZW16bXEweTM4cjlpNWMzbnQ5cSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/mIZ9rPeMKefm0/giphy.gif");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

/* font-family for buttons you need explicity state the font in its property, just state it within the body */
button {
  cursor: pointer;
  outline: none;
  width: 200px;
  height: 50px;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  color: white;
  background: #ff3482;
  border: none;
  border-radius: 5px;
  box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.2);
}

/* pseudo class, will style the element when a given event or state has occurred */

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

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

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

/* media queries: tablet or smaller */
@media screen and (max-width: 1000px) {
  .container {
    background-position: center center;
    background-size: cover;
  }

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