body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    /* Яркий, детский фон */
    background-color: #fce4ec; /* Светло-розовый */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #3f51b5; /* Голубой */
}

h1 {
    color: #ff5722; /* Оранжевый */
    margin-bottom: 50px;
    font-size: 2.5em;
    text-shadow: 2px 2px #fff;
}

#circle-container {
    position: relative;
}
#fullscreen-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    padding: 8px 12px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#fullscreen-btn:hover {
    opacity: 1;
}


.letter-block {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    /* Скругленные углы и яркие цвета для детской стилистики */
    border-radius: 50%;
    background-color: #4caf50; /* Зеленый */
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    /* Центрируем блок, чтобы его центр был на орбите */
    /* Эти свойства будут переопределены JS, но важны для центрирования */
    margin-left: 0; 
    margin-top: 0;
    
    /* Убираем transition, который нам тут не нужен */
    transition: none; 
}

/* Уменьшаем блоки в спирали для лучшего вида */
.spiral .letter-block {
    width: 40px;
    height: 40px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

/* Цвета для разнообразия */
.letter-block:nth-child(3n + 1) { background-color: #9c27b0; } /* Фиолетовый */
.letter-block:nth-child(3n + 2) { background-color: #ff9800; } /* Желто-оранжевый */
.letter-block:nth-child(3n + 3) { background-color: #03a9f4; } /* Небесно-голубой */