@import url(../../Alignment/style.css);
/* body {
    font-family: Arial, Helvetica, sans-serif;    
} */
.container {
    display: flex;
    height: 300px;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px 5%;
    margin: 10px 5%;
    background-color: #fff;
    border: 2px solid brown;
    align-items: center;
    border-radius: 20px;
}

h1 {
    text-align: center;
    line-height: 1em;
}

.container {
    font-size: 10px;
    height: 30em; /*Computed: 300px*/
}

.container>#h-1{
    font-size: 2em; /*Computed: 20px*/
}

.container>#h-2{
    font-size: 3em;  /*Computed: 30px*/
}

.container>#h-3{
    font-size: 5em;  /*Computed: 50px*/
}

#vwh-example {
    width: 50vw;
    height: 30vh;
    margin: 10px auto;
}

#vwh-example>h1 {
    font-size: 3vw;
}

@media screen and (min-width: 900px) {
    #vwh-example>h1 {
        font-size: 27px;
    }
  }
  @media screen and (min-width: 1200px) {
      body {
          font-size: 18px;
        }
    }
@media screen and (min-width: 1600px) {
    body {
        font-size: 20px;
    }
}
@media screen and (min-width: 2000px) {
    body {
        font-size: 1vw;
    }
}