html,
body {
    background: #7bb665;
    margin: 0px;
    padding: 0px;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
}

.wrap {
    margin: auto;
    position: relative;
    width: 300px;
    height: 300px;
}

.log.base {
    background-color: #402f1d;
    height: 60px;
    width: 120px;
    position: absolute;
    bottom: 0;
    left: 90px;
}

.log.chop > .left {
    background-color: #795c32;
    height: 60px;
    width: 25px;
    position: absolute;
    animation: leftLog 1s linear infinite;
}

@keyframes leftLog {
    0%,
    33% {
        bottom: 60px;
        left: 125px;
        rotate: 0deg;
    }
    40% {
        bottom: 75px;
        left: 90px;
        rotate: -40deg;
    }
    50% {
        bottom: 80px;
        left: 50px;
        rotate: -100deg;
    }
    66%,
    100% {
        bottom: -20px;
        left: 0px;
        rotate: -270deg;
    }
}

.log.chop > .right {
    /* border: 1px solid brown; */
    background: #795c32;
    height: 60px;
    width: 25px;
    position: absolute;
    animation: rightLog 1s linear infinite;
    z-index: 2;
}

@keyframes rightLog {
    0% {
        bottom: 60px;
        right: 125px;
        rotate: 0deg;
    }
    33% {
        bottom: 60px;
        right: 125px;
        rotate: 0deg;
    }
    40% {
        bottom: 75px;
        right: 90px;
        rotate: 40deg;
    }
    50% {
        bottom: 80px;
        right: 50px;
        rotate: 100deg;
    }
    66% {
        bottom: -20px;
        right: 0px;
        rotate: 270deg;
    }
    100% {
        bottom: -20px;
        right: 0px;
        rotate: 270deg;
    }
}

.axe {
    position: absolute;
    z-index: 1;
    animation: axeSwing 1s linear infinite;
}

@keyframes axeSwing {
    0% {
        bottom: 240px;
        left: 75px;
        rotate: 30deg;
    }
    36% {
        bottom: 120px;
        left: 150px;
        rotate: 65deg;
    }
    100% {
        bottom: 120px;
        left: 150px;
        rotate: 65deg;
    }
}

.axe > .head {
    background-color: #a19d94;
    position: absolute;
    height: 40px;
    width: 60px;
    z-index: 2;
}

.axe > .handle {
    background-color: #ffb970;
    position: absolute;
    height: 120px;
    width: 10px;
    left: 10px;
    top: 10px;
}

.storage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.storage > .log {
    background-color: #795c32;
    height: 60px;
    width: 25px;
    margin: 5px;
}

.house {
    width: 75%;
    margin: auto;
}

.roof {
    display: flex;
    clip-path: polygon(50% 0%, 100% 70%, 100% 100%, 0 100%, 0 70%);
    background-color: #ffb970;
}

#count {
    padding-top: 40px;
    padding-bottom: 10px;
    margin: auto;
    width: fit-content;
}

.wishes {
    width: 75%;
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.wishes > .small {
    font-size: 0.5rem;
}
