@import url(https://fonts.googleapis.com/css2?family=Roboto&display=swap);
@media (min-aspect-ratio: 4/5) {
  html,
body,
#app {
    height: 100%;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #dfeae2;
  font-family: "Roboto", sans-serif;
}

a {
  color: #BB4F35;
  transition: color 200ms;
}
a:hover {
  color: #E28972;
}

::-moz-selection {
  background: #dfeae2;
}

::selection {
  background: #dfeae2;
}

#app {
  min-width: 320px;
  padding: 25px;
}
@media (min-aspect-ratio: 4/5) {
  #app {
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  #app {
    padding: 50px;
  }
}

.brand {
  display: none;
}
@media (min-aspect-ratio: 4/5) {
  .brand {
    display: block;
    width: 200px;
    margin: 10px;
    position: absolute;
    z-index: 1;
  }
}

.logo-copy {
  position: relative;
}
.logo-copy__img {
  background-image: url(media/svg/hoppipolla_logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 180px;
}
.logo-copy__copy {
  font-size: 28px;
  color: #798C70;
  color: #3f6266;
  text-align: center;
}
@media (min-width: 400px) {
  .logo-copy {
    height: 50vh;
    margin: auto;
  }
  .logo-copy__img {
    background-image: url(media/svg/hoppipolla_logo_clean_cropped.svg);
    width: 100%;
    height: 100%;
  }
  .logo-copy__copy {
    font-size: 26px;
    max-width: 720px;
    margin: auto;
  }
}
