/* General body styles */
body {
    margin: 0;
     font-family: "DynaPuff", system-ui;
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: center;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: bold; /* Makes all text bold */
}

/* Social media icons section */
.section p {
    font-size: 24px;
    margin: 20px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section p a img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid black;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.section p a img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Interactive sections */
#interactive, #additional-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.interactive-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.shiba {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
}

.duck {
    position: absolute;
    top: 20%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: auto;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.duck.jump {
    transform: translate(-50%, -70%);
}

/* Footer styles */
footer {
    margin-top: auto;
    text-align: center;
    background-color: #343a40;
    color: #fff;
    padding: 0px 0;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .section p {
        font-size: 18px;
        flex-wrap: wrap;
    }

    .section p a img {
        width: 40px;
        height: 40px;
        margin: 5px;
    }

    .shiba {
        max-width: 350px;
    }

    .duck {
        width: 60px;
    }

    footer {
        padding: 15px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section p {
        font-size: 16px;
        gap: 5px;
    }

    .section p a img {
        width: 35px;
        height: 35px;
    }

    .shiba {
        max-width: 300px;
    }

    .duck {
        width: 50px;
    }
}

/* Ensure body and HTML cover the full screen */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}
