@font-face {
    font-family: HelveticaNeueLight;
    src: url(./fonts/HelveticaNeueLight.otf);
}

* {
    box-sizing: border-box;
}

:root {
    cursor: none;
    --cursorX: 50vw;
    --cursorY: 50vh;
  }

:root:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    pointer-events: none;
    background: radial-gradient(
      circle 10vmax at var(--cursorX) var(--cursorY),
      rgba(0,0,0,0) 0%,
      rgba(0,0,0) 100%
    )
}

body {
    font-family: HelveticaNeueLight;
    line-height: 14px;
    letter-spacing: 0.3px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

span {
    font-size: 13px;
    color: black;
    z-index: 1;
    cursor: url(./images/cursor-hover.png), none;
}

.flex-container {
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0
}

.text-item{
    flex: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.text-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 90vh;

    font-size: 15px;
    color: white;
    margin: 0;
    padding: 0;;
    text-align: center;
    z-index: 2;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#appear-text {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 5vh;

    font-size: 9px;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    z-index: 2;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#appear-text a {
    color: black;
    text-decoration: underline;
    cursor: url(./images/cursor-hover.png), none;
}

@media screen and (max-width: 720px) {
    .text-main {
        height: 85vh;
    }
}