body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease-in-out;
}

#octopus-container {
    position: relative;
    width: 300px;
    height: 200px;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

#octopus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}

#octopus-no-ink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#ink-bubble {
    position: absolute;
    top: 70px;
    left: 85px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: opacity 0.5s ease-in-out;
}

#content {
    padding: 20px;
    display: none;
}