
html, body {
    overflow: hidden;
}

body {
    font-family: gill-sans-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1a1a1a;
}

a {
    color: #1a1a1a;
    text-decoration: none;
}

@media (orientation: portrait) {

    :root {
        --link-img-size: 7vh;
        --link-img-margin: 1vw;
        --headline-font-size: 10vh;
    }
}

@media (orientation: landscape) {
    :root {
        --link-img-size: 4vw;
        --link-img-margin: 0.5vw;
        --headline-font-size: 6vw;
    }
}

#h {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

#links {
    text-align: center;
}

#links img {
    aspect-ratio: 1 / 1;
    width: var(--link-img-size);
    margin: var(--link-img-margin);
}

#headline {
    font-size: var(--headline-font-size);
}   

#headline-dot {
    font-size: var(--headline-font-size);
    animation: fadeOut 5s, fadeOut2 9.3s;
    animation-fill-mode: forwards;
}


@keyframes fadeOut {
    from { 
      opacity: 1;
   
    }
    to {
      opacity: 0;
    }
}

@keyframes fadeOut2 {
    from { 
        position: static;
    }
    to {
        position: absolute;
    }
}