body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    overscroll-behavior-y: contain;
}
.container {
    display: none;
}
.container.active {
    display: block;
}
.content {
    margin-bottom: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
button {
    display: inline-block;
    border: none;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}
.navigation button{
    color: #0078d4;
    background: #fff;
    padding: 5px 10px;
}
.content button{
    color: #fff;
    background: #0078d4;
    padding: 10px 20px;
}
input[type="text"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    text-align: center;
    background-color: #0078d4;
    color: white;
    border: none;
    cursor: pointer;
}
.navigation * {
    margin: 10px;
}
.biodata div {
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}
.biodata form {
    width: 90%;
}
iframe {
    width: 100%;
    height: 100vh;
    border: none;
}
.content > p {
    font-size: 1.2em;
    margin: 20px;
    width: 90%;
}

.content > div {
    margin: 20px;
    width: 90%;
}

.content > div > p {
    font-size: 1.2em;
}

table {
    font-size: 1em;
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

table tr {
    border-bottom: 1px solid #0078d4;
}

table td {
    text-align: right;
}

table td:first-child {
    text-align: left;
}​