body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /*background-color: white;*/
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}
.top-section, .middle-section, .bottom-section {
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
    
}
.top-section {
    font-size: 1.5em;
    color: #555;
}
.bottom-section {
    font-size: 1em;
    color: #777;
}

.scene {
    width: 150px;
    height: 150px;
    perspective: 600px;
}
.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 5s infinite linear, colorChange 10s infinite alternate;
}
.cube div {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 182, 193, 0.8);
    border: 1px solid #ccc;
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.5);
    animation: glow 2s infinite alternate;
}
.cube .front  { transform: translateZ(75px); }
.cube .back   { transform: rotateY(180deg) translateZ(75px); }
.cube .right  { transform: rotateY(90deg) translateZ(75px); }
.cube .left   { transform: rotateY(-90deg) translateZ(75px); }
.cube .top    { transform: rotateX(90deg) translateZ(75px); }
.cube .bottom { transform: rotateX(-90deg) translateZ(75px); }

@keyframes rotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    50% { transform: rotateX(180deg) rotateY(180deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes colorChange {
    0% { background: rgba(255, 182, 193, 0.8); }
    25% { background: rgba(173, 216, 230, 0.8); }
    50% { background: rgba(144, 238, 144, 0.8); }
    75% { background: rgba(255, 228, 181, 0.8); }
    100% { background: rgba(255, 182, 193, 0.8); }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(255, 182, 193, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 182, 193, 1); }
}

#counter {
    font-size: 12px; 
    color:#333;
}

p.skateboarding-is-not-a-crime {
    font-size:1.0em;
    color:#fff;
    margin-top:70px;
    background-color:#cfcccc;
    padding:20px;
    border-radius:8px;
}

p.copyright {
    font-size:0.8em;
    color:#ccc;
    text-align:center;
}