
:root {
    --color-sage: #7e9f87;
    --color-darksage: #35533e;
    --color-text: #eed;
}

body {
    background-color: #eee;
    padding: 0;
    margin: 0 8px;
    font-family: 'Amatic SC', sans-serif;
    font-weight: bold;
}

.zoom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000d8;
    display: none;
    z-index: 400;
}

.zoom-content {
    margin: 5vh 5vw;
    width: 90vw;
    height: 90vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: zoom-out;
}

.zoomable {
    cursor: zoom-in;
}


.header {
    width: 80vw;
    height: 450px;
    background-color: var(--color-darksage);
    position: relative;
    margin: -50px auto 0 auto;
    z-index: 100;
}

.header-img {
    background-image: url("header.jpg");
    background-size: cover;
    width: 100%;
    height: 450px;
    opacity: 0.5;
}

.header-title {
    display: inline-block;
    width: 100%;
    margin-top: 310px;
    text-shadow: 2px 2px 0 black;
    color: var(--color-text);
    font-size: 42pt;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 0;
}


.login {
    width: 400px;
    text-align: center;
    position: relative;
    top: -50px;
    margin: auto;
    background-color: var(--color-darksage);
    padding: 40px;
    color: whitesmoke;
    font-family: sans-serif;
    font-size: 16pt;
    box-shadow: 0 2px 12px #332;
    border-radius: 6px;
    z-index: 600;
}

#wrapper {
    background-color: whitesmoke;
    height: 100%;
    position: relative;
    margin: 0 auto 50px auto;
    max-width: 75vw;
    min-height: 40vh;
    box-shadow: 0 0 10px #ccb;
}


#menu-wrapper {
    position: sticky;
    top: 0;
    background-color: #7e9f87bb;
    z-index: 200;
    width: 80vw;
    margin: auto;
}

.menu {
    width: 100%;
    text-align: right;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-link {
    display: inline-block;
    padding: 10px 35px;
    font-size: 20pt;
    color: var(--color-text);
    text-shadow: 1px 1px 0 black;
    cursor: pointer;
    user-select: none;
}

.menu-link:hover {
    color: white;
}


.separator {
    display: inline-block;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background-color: var(--color-sage);
    color: var(--color-text);
    text-align: center;
    font-size: 30pt;
}


.section {
    padding: 20px 80px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.section > div {
    margin-bottom: 20px;
}


.hint-text, .hint-link {
    font-family: sans-serif;
    color: var(--color-text);
    padding:20px;
}

.hint-text {
    font-weight: normal;
}

.hint-link {
    cursor: pointer;
}

.hint-link:hover {
    color: white;
}


.polaroid {
    filter: drop-shadow(0 6px 8px #665);
    height: 400px;
    width: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}