main {
    background: #EEE;
}

h1 {
    text-align: center
}

th {
    border-bottom: 2px solid #674018;
    font-family: Helvetica, Arial, sans-serif;
}

td {
    font-family: Helvetica, Arial, sans-serif;;
    font-size: 1rem;
    padding: 6px 10px
}

tr>td:first-of-type {
    white-space: nowrap
}

tr {
    background-color: #ebebeb;
}
tr:nth-of-type(2n) {
    background-color: transparent;
}

@media screen and (max-width:960px) {
    td {
        padding: 3px 5px
    }
}

.interior-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5vw;
    justify-content: center;
    min-height: 90vh;
    overflow: hidden;
    padding: 7em 5vw 5em 10vw
}

@media screen and (max-width:960px) {
    .interior-wrapper {
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 5vw
    }
}

.interior-wrapper>div:first-of-type {
    flex-grow: 2;
    max-width: 100vw;
    min-width: 50vw;
    position: relative
}

.interior-wrapper>div:first-of-type h1 {
    border-bottom: 4px solid var(--text);
}

.interior-wrapper>div:first-of-type section {
    border-left: 4px solid var(--text);
}

.interior-wrapper>div:last-of-type {
    flex-grow: .5;
    margin-top: calc(300px + 5vh);
    max-width: 420px;
    min-width: 420px;
    position: relative
}

.interior-wrapper>div:last-of-type ul {
    list-style-type: none;
    padding: 0
}

.interior-wrapper>div:last-of-type ul .button {
    font-size: 1em;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding: .5em 1em;
    width: 70%
}

@media screen and (max-width:960px) {
    .interior-wrapper>div:last-of-type ul .button {
        animation-delay: 0.1s !important
    }
}

.interior-wrapper>div:last-of-type section {
    border-top: 4px solid var(--text);
}

.interior-wrapper section,
.interior-wrapper h1 {
    background-color: var(--background);
    box-shadow: 0 0 6px #222;
    margin-bottom: 3rem;
    padding: 1rem 1rem;
    position: relative;
    z-index: 10
}

.interior-wrapper section>h2:first-of-type {
    margin-top: 0
}

.interior-wrapper div:first-of-type section li {
    list-style-image: url(../images/diamonds-four.svg);
    padding-bottom: .4em
}

.lawn-green,
.interior-popup {
    max-width: 100%;
    position: absolute;
    top: 0;
    z-index: 5
}

.lawn-green {
    top: 35px;
    transform: translateY(-100%);
    z-index: 7
}

.activate~.lawn-green {
    animation: lawn-green-animation 5s linear;
    animation-fill-mode: forwards;
    animation-play-state: running
}

.interior-popup {
    left: 20%;
    top: -50px;
    z-index: 4
}

.activate~.interior-popup {
    animation: interior-popup-animation 2s linear;
    animation-fill-mode: forwards;
    animation-play-state: running
}

@keyframes interior-popup-animation {
    0% {
        top: -50px
    }

    10% {
        top: -50px
    }

    35% {
        top: -300px
    }

    100% {
        top: -320px
    }
}