*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Permanent Marker", cursive;
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    overflow: hidden;
}

#box{
    border: 2px white solid;
    width: 15%;
    height: 20%;
    text-align: center;
    position: absolute;
    right: 150px;
    top: 200px;
}

#instructions {
    font-size: 16px;
    margin-top: 10px;
    color: white;
}

.instructions{
    text-decoration: underline;
}

#gameContainer{
    margin-top: 20px;
    text-align: center;
    background-color: #333;
}

#gameBoard{
    border: 3px solid;
}

.scores{
    display: flex;
    flex-direction: row;
}

#scoreText{
    font-size: 20px;
    color: white
}

#highestScore{
    font-size: 20px;
    color: white;
}

.score-status{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 20px;
    color: white;
}

.music{
    display: flex;
    flex-direction: row;
    font-size: 12px;
    position: relative;
    left: -320px;
    text-align: center;
    justify-content: space-between;
    top: -600px;
    color: white;
}

.side{
    cursor: pointer;
}

#startBtn{
    font-family: "Permanent Marker", cursive;
    font-size: 22px;
    width: 100px;
    height: 50px;
    border: 4px solid;
    border-radius: 15px;
    margin-top: 20px;
    margin-left: 5px;
    cursor: pointer;
}

.develop{
    margin-top: 25px;
    display: flex;
    justify-content: center;
    width: 150px;
    align-items: center;
    color: white;
}