/* img#hero {
    width: 70vmin;
    display: block;
    margin: auto;
} */

span#title {
    color: rgb(233, 194, 23);
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: calc(112.5% + 0.5vw);
    text-shadow: 0.1vmin 0.1vmin 0.2vmin #000000;
}

span#subtitle {
    color: white;
    font-family: 'Kanit', sans-serif;
    font-size: calc(112.5% + 0.5vw);
    text-shadow: 0.1vmin 0.1vmin 0.2vmin #000000;
}

div#textblock {
    position: absolute;
    display: block;
    width: 100%;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    padding: 0px;
}

div#hero {
    width: 85vmin;
    height: 85vmin;
    display: block;
    background-image: url("kohola_transparent.png");
    background-size: 85vmin;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

html {
    /* cursor: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" height="64" width="64"><text y="28" font-size="32">🐋</text><path d="M0,2 L0,0 L2,0" fill="red" /></svg>'),auto; */
}

/* for the pen */
html, body {
    margin: 0;
    min-height: 100%;
    background-color: #000000;
  }
  
  /* waves */
  .ocean {
    height: 10vmax; /* change the height of the waves here */
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
  }
  
  .wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%233a4a59'/%3E%3C/svg%3E");
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
  }
  
  .wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 18s linear reverse infinite;
    opacity: 0.5;
  }
  
  .wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
  }
  
  @keyframes wave {
      0% {transform: translateX(0);}
      50% {transform: translateX(-25%);}
      100% {transform: translateX(-50%);}
  }