body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#info {
    display: none;
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    color: white;
    padding: 5px;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;
}

button:hover {
    background-color: #45a049;
}
