* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body {
    margin: 0px;
    background-color: #f1eae8;
    color:#432219;
}
@media screen and (max-width: 680px) {
    form {
        display: grid;
        grid-template-rows: none;
        grid-template-columns: 1fr 8fr 1fr;
        grid-template-areas: 
        "filler-left title filler-right"
        "filler-left image filler-right"
        "filler-left info filler-right"
        "filler-left word filler-right"
        "filler-left choice filler-right"
        "filler-left buttons filler-right";
        justify-items: center;
        align-items: start;
        grid-gap: 10px;
    }
    #header h1{
        margin-bottom: 0px;
        font-size: 1.5em;
    }
    #image {
        max-width: 400px;
        width: 80%;
    }
    #info{
        font-size: 0.9em;
        text-align: center;
    }
    .char-box{
        font-size: 0.6em;
        margin: 3px;
        padding: 3px;
    }
    #choice button {
        font-size: 1em;
        margin: 5px;
        padding: 4px;
    }
    #buttons button {
        font-size:1em;
        padding: 8px;
        margin: 10px 15px;
        }
}
@media screen and (min-width: 681px) {
    form{
        display: grid;
        grid-template-rows: auto auto  minmax(150px,auto) auto auto ;
        grid-template-columns: 1fr 400px 200px 3fr 1fr;
        grid-template-areas: 
        "filler-left title title title filler-right"
        "filler-left word word word filler-right"
        "filler-left image info info filler-right"
        "filler-left image choice choice filler-right"
        "filler-left image buttons buttons filler-right";
        justify-items: center;
        align-items: start;
        grid-gap: 10px;
        margin: 10px;
    }
    #header{
        justify-self: start;
    }
    #header h1{
        margin: 10px auto;
    }
    #word{
        justify-self: end;
        margin-bottom: 10px;
    }
    .char-box {
        margin: 5px;
        padding: 5px;
    }
    #image {
        width: 400px;
        height: 400px;
    }
    #info{
        justify-self: end;
        margin: 20px 0px;
        text-align: right;
    }
    #choice{
        justify-self: end;
        justify-content: flex-end;
    }
    #choice button {
        margin: 5px;
        padding: 5px;
    }
    #buttons{
        align-self: end;
        justify-self: end;
    }
    #buttons button {
        font-size:1.2em;
        padding: 8px;
        margin: 10px 0px 10px 30px;
    }
        
}
#header{
    grid-area: title;
    }
#word{
    grid-area: word;
    display: flex;
    justify-content: center;   
}
.char-box {
    border: 2px solid #432219;
    border-radius: 5px;
    color: #f1eae8;
    background-color:#6b544e;
    }
#image-container{
    grid-area: image;
    display:flex;
    justify-content:center;
}
#image {
    background-color:#cac1bf;
}
#image img {
    width: 100%;
}
#info{
    grid-area: info;
}
#choice-container{
    grid-area: choice;
    display:flex;
    justify-content:center;
}
#choice {
    display: flex;
    flex-wrap: wrap;
}
#choice button {
    border: 2px solid #432219;
    background-color:#cac1bf;
    border-radius: 5px;
}
#buttons{
    grid-area: buttons;
    display:flex;
    justify-content: space-between;
    }
#buttons button {
    border: 2px solid #432219;
    background-color:#cac1bf;
    border-radius: 5px;
}
