/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(74, 153, 118);
    color: #fff;
    text-align: center;
}

/* Header and Navigation */
header {
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    background-color: rgb(60, 130, 100);
}

nav {
    margin: 0;
    padding: 10px 0;
    background-color: rgb(50, 110, 90);
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2em;
}

nav a:hover {
    text-decoration: underline;
}

/* Content Section */
.content {
    margin: 40px auto;
    max-width: 800px;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.9em;
}

.container {
    position: relative;
    max-width: 100%;
    min-width: 50%;
    overflow: hidden;
}

.download-iframe {
    position: relative;
    /*top: 0;
    left: 0;
    bottom: 0;
    right: 0;*/
    width: 80%;
    height: 80vh;
    border: ridge;
    margin: 0 auto;
    display: block;
}

label input[type="checkbox"] {
    margin-right: 5px;
}