html, body {
  height: 100%;
}

body {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#container {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

#screen {
  overflow: hidden;
  height: 100%;
  width: 100%;
  margin: 0;
  border: 0 none;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  background-image: url("images/Splash_en@3x.png");
}

#screen:lang(es) {
  background-image: url("images/Splash_es@3x.png");
}

#screen:lang(ca) {
  background-image: url("images/Splash_ca@3x.png");
}

#root {
  position: relative;
  display: flex;
  height: 100%;
}

@media only screen and (min-width: 600px) {
  body {
    background-color: #BFC8F2;
    background-image: url("images/bg_mobile.png");
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  #container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #screen {
    overflow: hidden;
    width: 360px;
    height: 90%;
    background-color: #FFF;
    box-shadow: 0 8px 20px 0 #0000001F;
    border-radius: 16px;
  }
}
