@font-face {
  font-family: "GT America Mono";
  src: url("./assets/GT-America-Mono-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #151515;
  --font-mono: "GT America Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}


html,
body {
  background-color: #ffffff;
  height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
}

html,
body,
button,
a,
h1 {
  color: var(--black);
  font-family: "GT America Mono", ui-monospace, monospace;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-feature-settings: "kern" 1;
  -ms-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

body {
  text-align: center;
  touch-action: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-meta {
  position: fixed;
  top: 50%;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: max-content;
  white-space: nowrap;
  text-align: left;
  transform: translateY(-50%);
  pointer-events: none;
}

.page-meta a {
  pointer-events: auto;
  transition: opacity 200ms cubic-bezier(0.5, 0.2, 0, 0.95);
}

@media (hover: hover) {
  .page-meta a:hover {
    opacity: 50%;
  }
}

.sections {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.sections > * {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 33%;
  padding: 12px;
  padding-top: 0px;
  padding-bottom: 0px;
  opacity: var(--item-opacity, 1);
  transition: opacity 200ms cubic-bezier(0.5, 0.2, 0, 0.95);
}

.sections__item--logo {
  height: var(--logo-height, 79px);
}

.site-logo {
  position: fixed;
  top: 50svh;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--logo-width, min(560px, calc(100% - 24px)));
  transform: translate(-50%, -50%);
  transform-origin: center center;
  pointer-events: none;
  will-change: transform;
}

.site-logo svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 79;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.instagram-link,
.house-with-a-pool-link {
  transition: opacity 200ms cubic-bezier(0.5, 0.2, 0, 0.95);
}

.instagram-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (hover: hover) {

  .house-with-a-pool-link:hover,
  .instagram-link:hover {
    opacity: 50%;
  }
}

.sections h2,
.sections p {
  max-width: 100%;
}

@media (width <=1750px) {
  .sections > * {
    width: 50%;
  }
}

@media (width <=1200px) {
  .page-meta {
    top: 12px;
    max-width: calc(50% - 24px);
    transform: none;
    white-space: normal;
  }
}

@media (width <=850px) {
  .sections > * {
    width: 100%;
  }

  .site-logo {
    width: calc(100% - 24px);
  }

  .page-meta {
    max-width: none;
    width: calc(100% - 24px);
    text-align: center;
    align-items: center;
    gap: 0px;
  }

  .page-meta > a > br {
    display: none;
  }
}

button,
a {
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  font-weight: normal;
  background: transparent;
  padding: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: fit-content;
}

::selection {
  background-color: var(--black);
  color: #ffffff;
}

::-moz-selection {
  background-color: var(--black);
  color: #ffffff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--black) #ffffff;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: var(--black);
}