h1 {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
    font-size: 50px; 
    font-style: normal; 
    text-align: center;
}

body {
    margin: 0;
}

.innocentWords {
    text-shadow: 2px 2px 5px gold;
    font-size: 70px;
}

.dirty {
    text-shadow: 2px 2px olivedrab;
    font-size: 70px;
}

.container {
    width: 100%;
    overflow: auto;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: center;
}

.row {
    padding: 5px;
    margin: 5px;
    overflow: auto;
    width: 100%;
}

.header {
    background-color: bisque;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

#GrossPic {
    width: 45%;
    float: left;
}

#RonPic {
    width: 45%;
    float: left;
}

#stats-column {
    width: 60%;
    position: relative;
    left: 150px;
    padding-top: 10px;
}

#puzzle-state {
    width: 75%;
    font-size: 50px;
    font-weight: bold;
    position: relative;
    left: 150px;
    top: 50px;

}

.stats {
    font-size: 20px;
}

.footer {
    width: 100%;
    height: 30px;
    text-align: center;
    background-color: lightgray;
}

@media screen and (max-width: 980px) {

    #GrossPic {
        width: 35%;
        float: left;
    }
    
    #RonPic {
        width: 35%;
        float: left;
    }

    .container {
        margin-bottom: 50px;
    }

}

@media screen and (max-width: 730px) {

    #puzzle-state {
        position: relative;
        left: 100px;
        top: 25px;
    }

    #stats-column {
        width: 60%;
        position: relative;
        left: 100px;
        padding-top: 10px; 
    }


}

@media screen and (max-width: 640px) {

    .header {
        font-size: 45px;
    }

    .innocentWords,
    .dirty {
        font-size: 55px;
    }

    #GrossPic {
        display: none;
    }

    #RonPic {
        width: 45%;
        float: none;
        position: relative;
        left: 80px;
    }

    #puzzle-state {
        position: relative;
        text-align: center;
        left: 0px;
        top: 0px;
    }

    .container {
        margin-bottom: 125px;
    }

}