﻿@charset "utf-8";

:root {
  --water-color: #75dcd7;
  --text-color: #ffffff;
  --puka-size: 30vh;
  --footer-size: 1em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  background-color: var(--water-color);
  text-align: center;
  cursor: pointer;
}

#puka {
  height: var(--puka-size);
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#puka img {
  height: 100%;
  width: auto;
  display: block;
}

#footer {
  height: var(--footer-size);
  width: 100vw;
  position: absolute;
  bottom: var(--footer-size);
  text-align: center;
  font-size: 50%;
}

a {
  color: var(--text-color);
  text-decoration: none;
}
