*,
*:before,
*:after {
    box-sizing: border-box;
}
html,
body {
    background-color: #000;
    color: #fff;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    margin: 0;
    position: relative;
    min-height: 100svh;
    overflow-x: hidden;
    font-family: "Anantason Reno SemiCondensed";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
article,
aside,
figcaption,
figure,
picture,
footer,
header,
hgroup,
main,
nav,
section {
    margin: 0;
    display: block;
}

#entersite {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-content: center;
    grid-gap: 25px 0;
    width: 100%;
    min-height: 100svh;
    padding: 80px 25px;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.entersite--media {
    grid-row: 1;
    align-self: center;
    display: block;
    width: 100%;
    margin: 0 auto;
}
.entersite--media img {
    margin: 0;
    display: block;
    width: 100%;
    height: auto;
}
.entersite--explore {
    grid-row: 2;
    align-self: flex-end;
}
.entersite--button {
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-gap: 0 0.5em;
    height: 50px;
    width: auto;
    padding: 2px 45px;
    line-height: 1;
    color: currentColor;
    text-decoration: none;
    border: 1px solid currentColor;
    background-color: transparent;
}
.entersite--button span:not(:last-child) {
    border-right: 1px solid;
    padding-right: 0.5em;
}
.entersite--button:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000;
    transition: 0.5s ease;
}

@media (orientation: landscape) {
    #entersite {
        background-image: url("entersite-bg-landscape.jpg");
    }
    .entersite--media {
        max-width: 1144px;
    }
}

@media (orientation: portrait) {
    #entersite {
        background-image: url("entersite-bg-portrait.jpg");
    }
    .entersite--media {
        max-width: 340px;
    }
}
