#banner {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner > img {
    animation: pulse 2s infinite;
    width: 200px;
    height: 200px;
}

#link {
    position: fixed;
    top: 0;
    left: 0;
    padding: 7px;
    z-index: 2;
    font-size: 15px;
    background: #eee;
    border-radius: 0 0 5px 0;
}

#link > a {
    color: #000;
    text-decoration: underline;
}

.with-font {
    font-family: "Kanit", sans-serif;
    font-weight: 100;
    font-style: normal;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}