mkdir -p css
echo '
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #1a1a1a;
    color: white;
}

.globe-container {
    text-align: center;
}

#globe {
    width: 400px;
    height: 400px;
    margin: 20px auto;
    position: relative;
}

.controls {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 18px;
    cursor: pointer;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background: #444;
}' > css/style.css