html {
    margin: 60px;
    background-color: #fafcdd;
}

img {
    width: 100px;
    height: 100px;
}

.main-notes {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-right: 150px;
    margin-top: -55px;
}

.master {
    display: flex;
    justify-content: center;
}

.titles, .score, .reset, .mute {
    width: 400px;
    text-align: center;
}

#board {
    position: relative;
    width: 450px;
    height: 800px; 
    background-image: url(../img/game_background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border: 3px inset #abe6c8;
}

#character {
    position: absolute; 
    width: 100px;
    height: 100px; 
    top: 85%;
    left: 40%;
}

.item {
    position: absolute;
    width: 100px;  
    height: 100px;  
    top: 0;     
    left: 0;      
}

/* text styling */
.titles h1{
        font-family: pinecone-mvb, sans-serif;
        font-size: 65px;
        text-transform: uppercase;
        background: linear-gradient(#FFF1CB, #ffb8ba);
        background-clip: text;
        color: transparent;
        letter-spacing: -5px;
        -webkit-text-stroke: 0.2px #592f1f;
        margin-bottom: 20px;
}

.titles p{
    font-family: "elza-round-variable", sans-serif;
    font-variation-settings: "wght" 450;
    color: #473333;
}

.score {
    margin-top: 35px;
}

.score h1{
    font-family: pinecone-mvb, sans-serif;
    font-size: 20px;
    margin-bottom: -10px;
    color:#592f1f;
}

.score h3{
    font-family: "elza-round-variable", sans-serif;
    font-variation-settings: "wght" 450;
    margin-top: 10px;
    font-weight: bold;
    color:#592f1f;
}

/* score image */

.main-notes{
    background-image: url(../img/usagi_head.png);
    background-repeat: no-repeat;
    background-position: 51.5% 68%;
    background-size: 200px;
}

/* button styling */

.reset button,.mute button {
    font-family: pinecone-mvb, sans-serif;
    font-size: 25px;
    -webkit-text-stroke: 1.5px #592f1f;
    letter-spacing: -1.5px;
    background: linear-gradient(#FFF1CB, #ffc1c3);
    color: #FFF1CB;
    border: 2px solid #592f1f;
    border-radius: 10px;
    margin: 10px;
}
