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

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#buttons {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f1f1f1;
    padding: 10px;
}

button {
    margin-right: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

#innerPage {
    width: 100%;
    border: none;
    flex-grow: 1;
    padding-top: 60px;
}

#innerPage object{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 600px) {
    #buttons {
        
        align-items: center;
        padding: 10px 0;
    }

    button {
        margin: 5px;
    }
    
    #innerPage {
    width: 100%;
    border: none;
    padding-top: 60px;
    }
}