*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (width >= 900px) {
    .wgt900-p-top {
        padding-top: 320px;
    }
}
@media (width <= 900px) {
    .wlt900-fit-img-to-screen img {
        max-width: 100%;
        height: auto;
    }
    .wlt900-flex-col {
        flex-direction: column;
    }
}
/* html, body {
    height: 100%;
    margin: 0;
}

html:has(dialog[open][modal-mode="mega"]) {
    overflow: hidden;
}

body {
    min-width: 400px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-style: normal;

    background-color: var(--page-bg-color);
    color: var(--text-color);

    display: flex;
    flex-direction: column;

    --page-bg-color: #F8F4F1;
    --text-color: #301D10;
    --border-color: #301D10;
    --text-hover-color: #A34A21;
    --copy-right-color: #A34A21;
}

a, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
}


.content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.content .motion-block {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 0 40px;
}
.content .motion-block img {
    width: 640px;
}

.content .motion-block .overlay {
    display: none;
    width: 640px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    position: absolute;
    font-weight: 600;
    font-size: 24px;
    top: 0;
    bottom: 0;
    left: 0;
    user-select: none;
}

.content .motion-block .overlay .title {
    font-size: 36px;
}

.content .motion-block:hover .overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.content .motion-block:hover .overlay div {
    padding: 0 20px;
}

.navbar {
    font-weight: 700;
    display: flex;
    width: max(calc(80vw), 400px);
    justify-content: center;
    height: 50px;
    margin: 30px 0 10px;
    align-self: center;
}


.navbar a {
    padding: 0;
    display: block;
    height: 50px;
    border-left: 1px solid var(--border-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    flex-grow: 1;
    transition: background-color .4s ease 0s;
}

.navbar a.active {
    color: var(--text-hover-color);
}

.navbar a:hover {
    background-color: #F2D9D9;
    color: var(--text-hover-color);
}

.navbar a:first-of-type {
    border: none;
}

.footer {
    flex-shrink: 0;
    font-family: "Open Sans";
    font-weight: normal;
    color: var(--copy-right-color);
    text-align: center;
    font-size: 14px;
    padding: 20px 0;
} */