html, body {
  height: 100%;
}

body {
  margin: 0;
}

.wrapper {
  height: 100%;
  background-image: url(assets/background-full.png);
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 90%;
  margin: 0 0 1rem;
}


@media only screen and (min-width: 600px) and (orientation: portrait) {
  .container {
    height: 100%;
    margin: 0 0 1rem;
    flex-direction: column;
  } 
}

@media only screen and (min-width: 600px) and (max-width: 730px) and (orientation: landscape) {
  .container {
    height: calc(100% - 28px);
    margin: 0 0 1rem;
    flex-direction: row-reverse;
  } 
}

@media only screen and (min-width: 730px) {
  .container {
    flex-direction: column;
    margin: 0 0 1rem;
  } 
}

.lobby-imgs, .lobby-buttons {
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.lobby-buttons {
  justify-content: center;
  width: 100%;
}

@media only screen and (min-width: 600px) and (orientation: landscape) {
  .lobby-buttons {
    align-items: flex-end;
  }
}

@media only screen and (min-width: 750px) {
  .lobby-buttons {
    justify-content: flex-start;
    margin-top: 1rem;
	margin-bottom: 0;
  }
}

.lobby-buttons-container {
  margin-left: 0;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 750px) {
  .lobby-buttons-container {
    margin-left: calc(50% - 285px);
    flex-direction: row;
  }
}

.mobile-lobby-img, .desktop-lobby-img {
  object-fit: contain;
}

.mobile-lobby-img {
  width: 199px;
  height: 330px;
  margin: 0 0 0 156px;
}

.desktop-lobby-img {
  width: 350px;
  height: 210px;
  margin: 145px 15px 0 -370px;
}

@media only screen and (min-width: 750px) {
  .mobile-lobby-img {
    width: 239px;
    height: 396px;
    margin: 0 55px 0 34px;
  }
  .desktop-lobby-img {
    width: 421px;
    height: 252px;
    margin: 144px 0 0 0;
  }
}

.btn-link {
  width: 250px;
  height: 15px;
  padding: 15px 49px 26px 50px;
  border-radius: 10px;
  background-color: rgba(109, 67, 235, 1);
  text-align: center;
  cursor: pointer;
  font-family: "Arial", serif;
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
 
  color: #ffffff;
}

@media only screen and (min-width: 600px) and (orientation: landscape) {
  .btn-link {
    margin: 12px 16px 41px 0;
    width: 160px;
    height: 15px;
    padding: 15px 49px 26px 50px;
    border-radius: 10px;
    background-color: rgba(109, 67, 235, 1);
  }
}

@media only screen and (min-width: 750px) {
  .btn-link {
    margin: 12px 16px 41px 0;
    width: 160px;
    height: 15px;
    padding: 15px 49px 26px 50px;
    border-radius: 10px;
    background-color: rgba(109, 67, 235, 1);
  }
}

a.btn-link {
  text-decoration: none;
}

.btn-link:first-child {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 750px) {
  .btn-link:first-child {
    margin-bottom: 0;
    margin-right: 3rem;
  }
}
