*, 
*:before, 
*:after{
    box-sizing: border-box;
    font-family: "Arvo", serif;
    padding: 0px;
}
html{
    font-size: 16px;
}
header{
    height: 200px;
    width: 100%;
    background-color: rgb(219, 201, 149);
    justify-content: center;
    align-content: center;
}
.logo{
    /* margin: 24px 36px 24px 36px; */
    height: 150px;
    position: absolute;
    left: 36px;
    top: 24px;
    filter: saturate(100%) sepia(4%) saturate(3021%) hue-rotate(323deg) brightness(112%) contrast(114%);}
.logo img{
    margin: auto;
    height: 100%;
}
header h1{
    font-size: 4rem;
    font-family: "Arvo", serif;
    padding: 60px;
}
body{
    margin: 0;
    padding:0;
    background-color: #ffefd5;
    /* font-family: 'Roboto', sans-serif; */
    text-align: center;
}
main{
    width: 800px;
    height: 600px;
    /* background-color: blue; */
    /* background-image: url(../assets/images/background.svg); */
    margin: 24px;
    /* background-repeat: no-repeat; */
}
#charObj{
    /* margin-top: 100px;  */
    width: 600px;
    height: 600px;
    border: black solid 10px;
    transition: ease-in-out 500ms;
}

/* backObj */

#container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 90%;
    margin: auto;
}
#controls{
    display: flex;
    flex-direction: column;
    margin: auto;
}
button{
    height: 3rem;
    width: 24rem;
    margin: 1rem;
    background-color: #aaaaaa;
    color: rgb(11, 11, 11);
    font-size: 1.5rem;
    border: 3px solid rgb(11, 11, 11);
    border-radius: 24px;
    transition: ease-in-out 500ms;
    /* opacity: 0.7; */
}
#neutral{
    background-color: white;
}
#happy{
    background-color: yellow;
}
#angry{
    background-color: rgb(255, 65, 65);
}
#sad{
    background-color: lightskyblue;
}
#sick{
    background-color: rgb(55, 209, 55);
}
#dead{
    background-color: lightgray;
}
#feed{
    background-color: orange;
}

.disabled{
    background-color: rgb(100, 100, 100)!important;
    transition: 300ms ease-in-out;
}

button:hover{
    cursor: pointer;
    filter: brightness(0.8);
    /* background-color: rgb(0, 255, 42) !important; */
    /* opacity: 1; */
    color: black;
    border: 5px solid black;
    transition: ease-in-out 200ms;
}

@media only screen and (max-width: 1080px) {
    button{
        width: 12rem;
    }
    #charObj{
        height: 400px;
        width: 400px;
        margin-top: 100px;
    }
    header h1{
        font-size: 3rem;
        transition: ease-in-out 250ms;
    }
}

@media only screen and (max-width: 768px) {
    header{
        text-align: right;
    }
    header h1{
        font-size: 2rem;
        transition: ease-in-out 250ms;
    }
    #container{
        flex-direction: column;
    }
    main{
        width: 100%;
        height: auto;
        margin: auto;
    }
    #charObj{
        margin: 24px auto;
    }
    #controls{
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    button{
        width: 42%;
        align-content: center;
        justify-content: center;
    }
    #feed{
        width: 100%;
    }
}