body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000000;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.gear {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 15px rgb(255, 208, 0, 1),
                0 0 30px rgba(255, 208, 0, 0.8),
                0 0 45px rgba(255, 208, 0, 0.6),
                0 0 60px rgba(255, 208, 0, 0.4);
}

.gear1 {
    animation: spin 4s linear infinite;
}

.gear2 {
    animation: spin 4s linear infinite reverse;
}

.gear3 {
    animation: spin 4s linear infinite;
}

.letter {
    font-size: 36px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(90, 90, 90, 0.8),
                 0 0 20px rgba(90, 90, 90, 0.6),
                 0 0 30px rgba(90, 90, 90, 0.4),
                 0 0 40px rgba(90, 90, 90, 0.2);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.message {
    font-size: 24px;
    margin-top: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4),
                 0 0 40px rgba(255, 255, 255, 0.2);
}



.home-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4),
                 0 0 40px rgba(0, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                0 0 30px rgba(255, 255, 255, 0.6),
                0 0 45px rgba(253, 255, 255, 0.4),
                0 0 60px rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s, color 0.3s;
}

.home-button:hover {
    background-color: #ffffff;
    color: #000;
}