:root {
  --spacing-md: 30px;
  --spacing-sm: 10px;
  --color-base: #000000;
  --color-body: #ffffff;
  --color-action: blue;
}

@font-face {
  font-family: "review";
  src: url("fonts/review-mono-regular.woff2") format("woff2"),
    url("fonts/review-mono-regular.woff") format("woff");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-body);
  color: var(--color-base);
  font-family: "review", monospace;
  font-size: 15px;
  line-height: 19px;
}

@media (max-width: 960px) {
  body {
    font-size: 13px;
    line-height: 17px;
  }
}

main {
  display: block;
}

.logo {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.logo img {
  width: 66.66%;
  margin: 0 auto;
  display: block;
}

.info {
  position: relative;
  z-index: 3;
  padding: var(--spacing-sm);
}

/* text */
a {
  color: var(--color-action);
}

p {
  margin: 0 0 var(--spacing-sm) 0;
}

.image {
  position: fixed;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 66.66%;
  height: 66.66vh;
}

.image .image__box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.caption {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-sm);
}

.caption p {
  margin-bottom: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
