@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
body{
    margin: 0;
    padding: 0;
    background-color: #dfcdae;
}
#container{
    
    margin: 0 auto;
    overflow: hidden;
}
#images{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    position: fixed;
    overflow: hidden;
    
}
img {
    width: 100%;
    /* position:fixed; */
}
#wheat {
    grid-column: 1/4;
    grid-row: 1/3;
    z-index: -2;
    padding-top:15px;
}
#ants {
    grid-column: 1/4;
    grid-row: 1/3;
}
#grasshopper{
    grid-column: 1/4;
    grid-row: 1/2;
    align-self: start;
    /* padding-bottom: 600px; */
    
}
#title {
    grid-column: 2/3;
    grid-row: 1/2;
    z-index: 2;
    text-align: center;
    color: #dfcdae;
    font-family: Handlee;
    font-size: 2em;
    /* position: fixed; */
}
#text {
    width: 85%;
    text-align: center;
    font-family: Handlee;
    font-size: 2em;
    line-height: 1.4em;
    margin: 2000px auto 0 auto;
    /* position: fixed; */
}
#progress{
    width: 100%;
    height: 15px;
    background-color: #c2c67a;
    position: fixed;
    z-index: 99;
}
/* @media screen and (min-width: 600px) {
    #wheat {height: 100vh;
    }
  } */
@media screen and (min-width: 800px) {
    #text {
        width: 80%;
    }
  
    #images{
        left: 5%;
        width: 90%;
    }
  }
  @media screen and (min-width: 1000px) {
    #container{
        max-width: 700px;
    }
    #title{
        font-size: 2.5em;
    }
    #images{
        left: 21%;
        width: 60%;
        height: 80%
    }
    #text {
        width: 85%;
    }
    #wheat {
        padding-top: 0;
    }
  }