body {
    background-color: #00517C;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
}

nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: solid 2px white;
    height: 100%;
    gap: 4px;
    align-items: center;
}

nav .spacer {
    flex-grow: 1;
}

#installBtn {
    font-family: Arial, Helvetica, sans-serif;
    background: #039be5;
    border: solid 2px white;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: large;
    color: white;
    cursor: pointer;
    margin-right: 12px;
    display: none;
}

#installBtn:hover {
    background: #0288d1;
}

#iosModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

#iosModal.show {
    display: flex;
}

.modal-content {
    background: #00517C;
    border: solid 2px white;
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.modal-content h3 {
    margin-top: 0;
    font-size: x-large;
}

.modal-content p {
    font-size: large;
    line-height: 1.5;
}

.modal-content button {
    background: #039be5;
    border: solid 2px white;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: large;
    color: white;
    cursor: pointer;
    margin-top: 16px;
}

.modal-content button:hover {
    background: #0288d1;
}

nav a {
    font-family: Arial, Helvetica, sans-serif;
    background: transparent;
    padding: 16px;
    font-size: x-large;
    color: white;
}

nav a.current {
    background: #039be5;
}

main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 32px;

}

a {
    text-decoration: none;
}

.link {
    border: solid 2px;
    border-color: #202020;
    border-radius: 8px;
    padding: 24px;
    background: #039BE5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: xx-large;
    color: white;
    text-align: center;
    max-width: 500px;
}
