/* Alex's work */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.wrap {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Background Image */
body {
    background-color: whitesmoke;
    background-image: url("assets/images/gplaypattern_@2X.png")
}

/* Headings */
h2 {
    color: #026670;
}

h4, h3 {
    font-family: 'Cutive Mono', monospace;
    color: white;
}

/* Topbar and Hero */
.topbar-desktop {
    height: 100px;
    color: #3fb0ac;
    padding: 0;
}

.heart {
    color: #be79df;
}

.logoqmr {
    font-size: 50px;
    color: #3fb0ac;
}

.logoqmr, .qmr {
    font-family: 'Major Mono Display', monospace;
}

.hero {
    padding: 80px 0px;
    height: 275px;
}

.slogan {
    color: #3fb0ac;
    font-size: 20px;
    font-family: 'Cutive Mono', monospace;
}

/* Search Bar and Results Callout */
#searchbar {
    background-color: #ffe05d;
    color: whitesmoke;
    border: whitesmoke;
    border-radius: 10px;
    padding: 10px;
}

.search {
    padding: 10px;
    margin: 0 auto;
    width: 90%;
}

#searchbtn {
    border-color: whitesmoke;
    float: right;
    padding: 10px;
    margin: 0 auto;
    border-radius: 10px;
}

.searchoptions {
    padding-left: 1cm;
}

/* Search Results Callout */
#searchresults {
    background-color: rgb(206, 206, 206);
    color: white;
    border: whitesmoke;
}

#searchres {
    padding: 10px;
}

/* Suggestions Callout */
#suggestions {
    background-color: #bf79df9c;
    color: whitesmoke;
    border: whitesmoke;
    width: 90%;
    margin: 35px;
    padding: 10px;
}

#suggest {
    justify-content: center;
    align-items: center;
}

/* New Review Callout */
#newreview, #ratings {
    background-color: #3fb0ac96;
    color: whitesmoke;
    border: whitesmoke;
}

#stars {
    color: #ffdf4e;
    font-family: Arial, Helvetica, sans-serif;
}

#submission, #clear-click, #suggest {
    border-radius: 10px;
}

/* Footer */
footer {
    padding: 10px;
    height: 50px;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-family: 'Cutive Mono', monospace;
    background-color: #026670;
    color: whitesmoke;
}

/*betty*/
/*DYNAMIC ELEMENTS*/
div.box12{
    background-color:rgb(206, 206, 206); 
    margin-left: 1rem;
}
div.box{
    margin-right: 1rem;
    margin-left: 2rem;
    border-radius: 15px;
    border: solid 1px white;
    width: 26%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: .5rem;
    background-color: #026670;
    color: whitesmoke;
}
div.box img{
    width: 100%;
    height: 10rem;
    border-radius: 10px;
}
div.box h5{
    margin-top: 15px;
}
.reload{
    margin-left: 10rem;
    margin-bottom: 10px;
    border-radius: 8px;
}

/*@media helps to make the elements responsive*/
/*--this are used for search result div*/
@media screen and (max-width:1130px){

    div.box{
        width: 40%
    }
    }
@media screen and (max-width: 855px){

div.box{
    width: 60%
}
}

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

    div.box{
        width: 60%
    }
    }


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

    div.box{
        width: 90%
    }
    }


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

    #reload{
        margin-left: 5rem;
    }
    }    

/*--this was used for clear button--*/
@media screen and (max-width: 365px){

    #reload{
        margin-left: 1rem;
    }
    }      