html {
  height: 100%;
  background-color: red;
}

body {
  width: 100%;
  height: 100%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #DCDCDC;
  padding: 1em;
  margin: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

.wrapper {
  display: flex;
  margin: auto;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  height: 100%;
  /* border: solid 0.0625em lightgray;
    border-radius: 1em;
    box-shadow: 0em 0em .5em 0.5em gainsboro; */
  box-sizing: border-box;
}

.vcenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Genral settings and very tiny devices */
.logo {
  overflow: hidden;
  flex: auto;
  justify-content: center;
  width: 12em;
}

.img-logo {
  width: 100%;
}

.title {
  overflow: hidden;
  flex: auto;
  font-size: 1.6em;
  /* background-color: aqua; */
}

.text {
  flex: auto;
  text-align: justify;
  /* margin-top: 1.3em;
    margin-bottom: 1.3em;
    padding-left: 1.3em;
    padding-right: 1.3em; */
  padding: 1.3em;
  width: 22em;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.controls {
  overflow: hidden;
  width: 1em;
  justify-content: center;
  align-items: center;
  flex: 0 0 0;
  display: none;
  column-gap: 2em;
  background-color: #dcdcdc;
  color: black;
  border: solid 1px gray;
  margin: 1em;
  visibility: collapse;
}

.colorInputLabel {
  visibility: collapse;
  display: table-cell;
  padding: 5px;
  width: 18%;
  overflow: hidden;
}

.colorInput {
  visibility: collapse;
  display: table-cell;
  padding: 5px;
  width: 23%;
  overflow: hidden;
}

.boxWrapper {
  visibility: collapse;
  flex: 0 0 auto;
  height: 2em;
  display: table-row;
  overflow: hidden;
}

/* Small devices such as large phones (640px and up) */
@media only screen and (min-width: 22em) {
  .title {
    font-size: 2.5em;
    /* background-color: #ff0000; */
  }

  .text {
    width: 24em;
  }

  .logo {
    width: 20em;
  }
}

/* Small devices such as large phones (640px and up) */
@media only screen and (min-width: 40em) {
  .title {
    font-size: 4em;
  }

  .text {
    width: 24em;
  }

  .logo {
    width: 24em;
  }
}

/* Medium devices such as tablets (768px and up) */
@media only screen and (min-width: 48em) {
  .title {
    /* font-size: 3em; */
  }

  .text {
    font-size: large;
    /* width: 24em; */
  }

  .logo {
    width: 26em;
  }
}

/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 64em) {
  .title {
    /* font-size: 3em; */
  }

  .text {
    font-size: x-large;
    /* width: 24em; */
  }

  .logo {
    width: 26em;
  }
}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 80em) {
  .title {
    /* font-size: 3em; */
  }

  .text {
    font-size: xx-large;
    /* width: 24em; */
  }

  .controls {
    width: 34em;
    visibility: visible;
    display: table;
  }

  .colorInputLabel {
    visibility: visible;
  }

  .colorInput {
    visibility: visible;
  }

  .boxWrapper {
    visibility: visible;
  }

  .wrapper {
    max-width: 70em;
    border: solid 0.0625em lightgray;
    border-radius: 1em;
    box-shadow: 0em 0em .5em 0.5em gray;
  }
}

/* Small devices such as large phones (640px and up) */
@media only screen and (max-height: 12em) {
  .body {
    padding: 0.5em;
  }

  .title {
    font-size: 1.8em;
  }

  .text {
    width: 36em;
    font-size: smaller;
  }

  .logo {
    width: 12em;
  }
}

@media only screen and (max-height: 14em) {
  .body {
    padding: 0.5em;
  }

  @media screen and(min-width: 48em) {
    .title {
      font-size: 2.8em;
    }
  }

  .text {
    width: 36em;
    font-size: smaller;
  }

  .logo {
    width: 16em;
  }
}



.border {
  border-right: solid 1px gray;
}

/* svg {
    filter: drop-shadow(3px 5px 12px rgb(255, 0, 0));
} */

.svg-shadow {
  animation: svg-shadow 10s ease-in-out infinite alternate;
}

@keyframes svg-shadow {
  from {
    filter: drop-shadow(0 0 1px #ff0000) drop-shadow(0 0 2px #ff3300) drop-shadow(0 0 3px #ff6600);
  }

  /* to {
        filter: drop-shadow(0 0 8px #ff0000) drop-shadow(0 0 10px #ff0000) drop-shadow(0 0 12px #ff0000);
    } */
}