body {
    background: #0c4aaa;
    font-family: Urbanist;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}

body #offset-header {
    height: 7vh;
}

button,
input[type="submit"] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}

canvas {
    height: 100% !important;
    opacity: .4;
    position: relative;
    width: 100% !important;
    z-index: 1;
}

.hidden {
    display: none !important;
    opacity: 0;
}

.fade-in:not(.hidden) {
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: fadeInOpacity;
    animation-timing-function: ease-in;
    opacity: 1;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.no-border {
    border: none;
}

a.button {
    -webkit-text-decoration: none;
    text-decoration: none;
}

#info-modal-header,
header {
    background: #b7a401;
    display: flex;
    flex-direction: row;
    height: 7vh;
    justify-content: space-around;
    padding: 1em .8em;
}

#info-modal-header .logo-zenith,
header:not(#does-not-exist) .logo-zenith {
    width: 20%;
}

#info-modal-header .logo-choeur,
header:not(#does-not-exist) .logo-choeur {
    width: 12em;
}

#info-modal-header .button-modal img,
header:not(#does-not-exist) .button-modal img {
    width: 100%;
}

header #info-modal-button {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 5.5em;
}

header a.back-home-page-link {
    align-items: center;
    background: #b7a401;
    border: none;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: row;
    font-size: 1.2em;
    font-weight: 500;
    gap: .1em;
    height: 3em;
    justify-content: center;
    margin: 0 auto;
    padding: .2em;
    width: 15em;
}

dialog#info_modal {
    background: transparent;
    border: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    width: auto;
}

dialog#info_modal #info-modal-content {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: Urbanist;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    height: 93vh;
    line-height: 150%;
    margin: 0;
    padding: 2em;
}

dialog#info_modal button.arrow {
    background: transparent;
    width: 2em;
}

dialog#info_modal button.arrow img {
    width: 7em;
}

main {
    align-items: center;
    background: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 1.1em;
    height: 93vh;
    line-height: 150%;
    margin: 0;
    padding: 1.5em;
    position: absolute;
    z-index: 2;
}

main .flex-row {
    display: flex;
    flex-direction: row;
}

main h2 {
    margin: 0;
}

main a.button,
main button,
main input[type=submit] {
    background: rgba(183, 164, 1, .7);
    border: 7.6px solid #f5f5f5;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 1.2em;
    gap: .1em;
    height: 7em;
    margin: 1em auto;
    text-align: center;
    width: 7em;
}

main a,
main a.button,
main button,
main input[type=submit] {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: row;
    font-weight: 500;
    justify-content: center;
}

main a {
    font-size: 1em;
}

main section.content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}

main section.content:has(+dialog[open]) {
    filter: blur(4px);
}