@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap');

body {
  background-color: #203377;
  background-image: url("src/assets/bg/sky.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: auto;
}

#content {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("src/assets/bg/skyline.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0 25px 0;
}

#content h1 {
  font-size: 5em;
  color: white;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 10px;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

#screen {
  position: fixed;
  width: 100%;
  left: 0; right: 0; top: 100px; bottom: 250px;
  text-align: center;
  z-index: 99999;
}

#screen .bird {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-image: url(src/assets/bird/bird.gif);
  background-position: center center;
  background-size: 100px 100px;
}

#buttonContainer {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#playButton {
  cursor: pointer;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#gameInfo {
  width: 25%;
  display: none;
  position: fixed;
  bottom: 25px;
  padding: 25px;
  background: #030128;
  border: 5px solid #203377;
  border-radius: 25px;
}

#gameInfo h1 {
  font-size: 40px;
  margin: 0;
  margin-bottom: 10px;
}