html {
  height: 100%;
}
@media screen and (min-width: 544px) {
  body {
    font-size: 2dvh;
    margin: 0;
    height: 100%;
    background-image: url("./assets/background.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  main {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .insert-text {
    position: relative;
    display: flex;
    width: 15vw;
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 900;
    font-style: Italic;
    font-size: 3vw;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke: 3px black;
    margin-left: 2rem;
    top: 3rem;
  }

  .dino-container {
    width: 70vw;
    height: 90vh;
    background: url("./assets/dino-container-image.png") no-repeat;
    background-position: center 50%;
    background-size: 100%;
    display: flex;
    align-items: center;
  }

  section > img {
    display: none;
  }
}

@media screen and (max-width: 544px) {
  body {
    font-size: 1dvh;
    margin: 0;
    height: 100%;
    size: 100%;
    background-image: url("./assets/mobile-background-image.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }

  main {
    height: 100%;
    width: 100%;
    display: flex;
  }

  .dino-container {
    width: 100%;
    height: 100%;
    padding-left: 3%;
  }

  .insert-text {
    z-index: 10;
    position: relative;
    width: 70vw;
    color: white;
    font-family: "Rubik";
    font-weight: 900;
    font-style: Italic;
    font-size: 5.5vw;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke: 1.5px black;
    top: 47%;
    left: 13%;
  }

  section > img {
    position: relative;
    bottom: 5%;
    width: 100%;
    height: 100%;
  }

  .dino-image-1 {
    z-index: 20;
    position: absolute;
    right: 0%;
    bottom: 40%;
    width: 75vw;
    height: 60vh;
    object-fit: cover;
  }

  .dino-image-2 {
    z-index: 20;
    position: absolute;
    right: 4%;
    bottom: 0%;
    width: 85vw;
    height: 35vh;
    object-fit: cover;
  }
}
