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

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #eeeab1
}

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

h1 {
  font-family: 'Courier New', Courier, monospace;
  color: #195dee;
  margin-bottom: 75px;
}

.flags {
  position: absolute;
  top: 10px; /* Distance from top */
  right: 10px; /* Distance from right */
  display: flex;
  justify-content: center;
  align-items: center;
}

.flag {
  cursor: pointer;
  width: 30px;
  height: 20px;
  margin: 0 5px;
  transition: transform 0.2s;
}

.flag:hover {
  transform: scale(1.1);
}

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

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

button:active {
  transform: scale(0.98)
}

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

p {
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  color: #333;
  margin-top: 20px;
  max-width: 40%;
  text-align: center;
}

/* Media Quer: 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)
  }
}