html, body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    user-select: none;
    font-family: "Arial", monospace;
}

footer
{
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 5.5px 10px;
    font-size: 1.65vh;
    color: #000000;
    background: #ffffff;
    background: linear-gradient(360deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    text-shadow: white 1px 0 3px;
    font-weight: bold;
    z-index: 1;
}

.highlight
{
    color: #0000ff;
    text-decoration: underline;
}

a 
{
    color: #0000ff;
    position: relative;
    top: 0px;
    transition: 0.035s linear;
}

a:hover
{
    top: -2.5px;
}

#linkContainer
{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 32px;
}

#link
{
    font-size: 42px;
    margin: 50vh 0 -24px; 0;
    transform: translateY(-50%);
}

.linkMessage
{
    display: block;
    margin: 9px 0 0 0;
    font-size: 16px;
    animation: fadeIn 0.4s linear;
    position: relative;
    top: 0;
    transition: 0.035s linear;
}

#linkMessage:hover
{
    top: -2.5px;
}

.linkClick
{
    color: #0000ff;
    text-decoration: underline;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: 0.035s linear;
}

.linkClick:hover
{
    top: -2.5px;
}

.zeldaClick
{
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    margin-bottom: -20px;
}

.zeldaClick:hover
{
    transform: scale(1.1);
    top: 0;
}

@keyframes fadeIn
{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}