body {
    margin: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #000428, #004e92);
    font-family: Arial, sans-serif;
}

#globe-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

#info {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

#controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    color: white;
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}