html {
    --candy-cane: 20px;
    --red: #aa253c;
    --dark-red: #310505;
}

body {
    background-color: #aa253c;
}

#game-title {
    font-size: xxx-large;
}

#game-subtitle {
    font-size: large;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

.mountains-of-christmas-regular {
    font-family: "Mountains of Christmas", serif;
    font-weight: 400;
    font-style: normal;
}

.mountains-of-christmas-bold {
    font-family: "Mountains of Christmas", serif;
    font-weight: 700;
    font-style: normal;
}

.shantell-sans-christmas {
    font-family: "Shantell Sans", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "BNCE" 0,
        "INFM" 0,
        "SPAC" 0;
}

.page-content {
    padding-bottom: var(--candy-cane);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    width: 100%;
    background-color: rgba(255, 177, 183, 0.8);
    color: var(--dark-red)
}

.instructions {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 50px;
}

.player-instructions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.keyboard-key {
    display: flex;
    height: 50px;
    width: 50px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--dark-red);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.start-game-button {
    position: absolute;
    padding: 10px 20px;
    top: 25%;
    left: 50%;
    color: white;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: green;
    border: solid 2px white;
    font-size: xxx-large;
    cursor: pointer;
}

.hide-winner-screen {
    display: none;
}

.score-card {
    position: absolute;
    display: none;
    padding: 10px 20px;
    top: 25%;
    left: 50%;
    color: white;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: green;
    border: solid 2px white;
    font-size: xxx-large;
    cursor: pointer;
}

.animal-friends {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    position: absolute;
    bottom: 30%;
    z-index: 5;
}

.cat-friend {
    width: 222px;
    height: 248px;
}

.cat-friend[data-state="inactive"] svg {
    margin-top: 20px;
}

.cat-friend[data-state="active"] {
    width: 190px;
    margin-right: 0px;
    margin-left: 32px
}

.cat-friend[data-state="active"] svg {
    margin-top: 20px;
}

.dog-friend {
    width: 350px;
    height: 248px;
    /* display: flex;
    align-items: flex-end; */
}

.dog-friend[data-state="active"] svg {
    margin-top: 155px;
}

.conveyor-belt {
    background-color: green;
    background-size: 100px 100px;
    height: 30px;
    width: 100%;
    position: relative;

    background-image: -webkit-linear-gradient(45deg, darkgreen 25%, transparent 25%, transparent 50%, darkgreen 50%, darkgreen 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, darkgreen 25%, transparent 25%, transparent 50%, darkgreen 50%, darkgreen 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, darkgreen 25%, transparent 25%, transparent 50%, darkgreen 50%, darkgreen 75%, transparent 75%, transparent);
}

@-webkit-keyframes conveyor-belt-stripes {
    from {
        background-position: 0 100px;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes conveyor-belt-stripes {
    from {
        background-position: 0 100px;
    }

    to {
        background-position: 0 0;
    }
}

.conveyor-belt-animation {
    -webkit-animation: conveyor-belt-stripes 3s linear infinite;
    -o-animation: conveyor-belt-stripes 3s linear infinite;
    animation: conveyor-belt-stripes 3s linear infinite;
}

.ornament {
    height: 50px;
    width: 50px;
    top: 10px;
    position: absolute;
    z-index: 10;
}

.bone {
    height: 50px;
    width: 100px;
    top: 20px;
    position: absolute;
    z-index: 3;
}

.half-bone {
    width: 50px;
}

.candy-cane {
    background: repeating-linear-gradient(30deg,
            var(--red),
            var(--red) 10px,
            white 10px,
            white 20px);
    -webkit-box-shadow: inset 0px 0px 12px 2px rgba(99, 6, 14, .5);
    -moz-box-shadow: inset 0px 0px 12px 2px rgba(99, 6, 14, .5);
    box-shadow: inset 0px 0px 12px 2px rgba(99, 6, 14, .5);
    width: 100%;
    height: var(--candy-cane);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
}