* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    min-height: 100vh;
    overflow: hidden;
    color: #000;
    font-family: sans-serif;
}

.spinning-text {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive;
    animation: spin 8s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-box-left {
    position: fixed;
    top: 30px;
    left: 30px;
    font-size: 1.4rem;
    font-family: 'Comic Sans MS', cursive;
}

@keyframes spin {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

.info-box {
    position: fixed;
    top: 30px;
    right: 120px;
    font-size: 1.4rem;
    font-family: 'Comic Sans MS', cursive;
    text-align: center;
}

.moving-photo {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: 380px;
}

.static-photo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 80vh;
}
