.dog-animation {
    margin-top: 2rem;
}

.dog {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.dog-body {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 50px;
    background-color: #8B4513;
    border-radius: 50% 50% 0 0;
}

.dog-tail {
    position: absolute;
    bottom: 25px;
    left: -20px;
    width: 20px;
    height: 10px;
    background-color: #8B4513;
    border-radius: 0 50% 50% 0;
    transform-origin: right;
    animation: wag-tail 0.5s infinite;
}

.dog-head {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 60px;
    height: 60px;
    background-color: #8B4513;
    border-radius: 50%;
}

.dog-ears {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 20px;
    height: 40px;
    background-color: #A0522D;
    border-radius: 50% 0 0 50%;
}

.dog-eyes {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
}

.dog-snout {
    position: absolute;
    top: 25px;
    right: 40px;
    width: 20px;
    height: 15px;
    background-color: #A0522D;
    border-radius: 50% 50% 0 0;
}

@keyframes wag-tail {
    0% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(10deg);
    }
}
#mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    border-top: 1px solid #e7ecf4;
}
#mobile-menu a {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e7ecf4;
}
.nav-link.active {
    color: #0d6cf2;
    font-weight: bold;
}
