body{
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#map{
    width: 100vw;
    height: 100vh;
}

#docs-link{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #ffffffAA;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    border-radius: 5px;
    animation: slideIn 0.5s ease both 1s;
    z-index: 1;
}

@keyframes slideIn {
    from {
        transform: translateY(-150%);
        opacity: 0;
    }
}