nav{
    display:flex;
    width: 70%;
    flex-flow: row nowrap;
    justify-content: space-around;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    background-color: rgb(82, 27, 27);
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;

}
.grid-container{
    display: grid;
    grid-template-areas: 
    'one two three'
    'four five six';
}
.one{
    grid-area: one;
}
.two{
    grid-area: two;
}
.three{
    grid-area: three;
}
.four{
    grid-area: four;
}
.five{
    grid-area: five;
}
.six{
    grid-area: six;
}
img{
    width: 92%;
    border-radius: 10px;
}
.grid-container > * {
    background-color: rgb(82, 27, 27);
    border-radius: 10px;
    padding: 20px;
    margin: 5px;
    text-align: center;
    font-size: 15pt;
    color: rgb(250, 239, 215);
}
h1{
    font-size: 50pt;
    text-align: center;
    color: blanchedalmond;
}
body{
    background-color: rgb(58, 56, 49);
}
a{
    color: brown;
    text-decoration: none;
    font-size: 25pt;
    margin-top: auto;
    margin-bottom: auto;
}
a:link {
    text-decoration: none;
    color: brown;
}
a:visited {
    text-decoration: none;
    color: brown;
}
a:hover {
    text-decoration: none;
    color: brown;
}
a:active {
    text-decoration: none;
    color: brown;
}
.poor-story-regular {
    font-family: "Poor Story", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
.joti-one-regular {
	font-family: "Joti One", serif;
	font-weight: 400;
	font-style: normal;
} 
h2{
    font-size: 20pt;
}
@media screen and (min-width: 600px) and (max-width: 1199px){
    nav{
        width:90%;
    }
    .grid-container{
        display: grid;
        grid-template-areas: 
        'one two'
        'three four'
        'five six';
    }
    img{
        width: 90%;
    }
    h2{
        font-size: 22pt;
    }
    a{
        font-size: 27pt;
    }
    h1{
        font-size: 52pt;
    }
    .grid-container > * {
        font-size: 17pt;
    }
}
@media screen and (max-width: 599px) {
    nav{
        width: 90%;
        flex-direction: column;
    }
    .grid-container{
        display: grid;
        grid-template-areas: 
        'one'
        'two'
        'three'
        'four'
        'five'
        'six';
    }
    img{
        width: 87%;
    }
    h2{
        font-size: 24pt;
    }
    a{
        font-size: 29pt;
    }
    h1{
        font-size: 54pt;
    }
    .grid-container > * {
        font-size: 19pt;
    }
    .goaway{
        display: none;
    }
}