body {
    font-family: 'Lato', sans-serif !important;
}

header {
    color: #fff;
}

.link-html {
    min-height: 100%;
}

.link-body {
    background-image: url(../img/bg.gif);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 100%;
}

.link-content {
    padding-top: 2rem;
}

.link-image {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.link-verified {
    color: #3897f0;
}

.link-btn {
    position: relative;
    white-space: normal;
    word-wrap: break-word;
    padding: 1rem 4.5rem;
    font-size: 1.1rem;
    box-shadow: 0 0 20px #00000010;
    border: 0;
    transition: opacity 0.3s, background 0.3s;
    border-radius: 0;
    background-color: #fff;
    color: #000;
    width: 75%;
}

.link-btn:hover {
    animation: none;
    background-color: #fff;
    color: #000;
    width: 75%;
}

.link-btn-round {
    border-radius: 50px;
}

.link-btn-rounded {
    border-radius: 0.3rem;
}

.link-footer {
    margin: 3rem 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .link-btn {
        background-color: #fff;
        color: #000;
        width: 100%;
    }
    
    .link-btn:hover {
        background-color: #fff;
        color: #000;
        width: 100%;
    }
}

/* tombol */

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -143px;
    background-color: #fff;
    color: Black;
    text-align: center;
    border-radius: 2px;
    padding: 6px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
    font-size: 14px;
    font-weight: bold;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 2;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 2;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 2;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 2;
    }

    to {
        top: 0;
        opacity: 0;
    }
}