html {
    scroll-behavior: smooth;
}

.herobg {
    background: white url("IMG-ICON-67.jpg") center / cover;
}

.fonth1 {
    color: white;
    font-size: 3em;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 0px 0px 10px black;
}

.fonth2 {
    color: white;
    font-size: 2em;
    font-family: 'Permanent Marker', cursive;
    text-shadow: 0px 0px 10px black;
}

.shadow {
    -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .7));
}

.down {
    padding-bottom: 150px;
    animation: float 4s ease-in-out infinite;
}

@media only screen and (min-width: 600px) {
    .down {
        padding-bottom: 50px;
    }
}

#down {
    color: white;
}

#down:hover {
    color: lightgrey;
}

a {
    color: grey;
}

a:hover {
    color: lightgrey;
    cursor: pointer;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-25px);
    }
    100% {
        transform: translatey(0px);
    }
}

.lbuttons {
    height: 250px;
    text-align: center;
    vertical-align: middle;
    line-height: 250px;
}

.outer-div {
    height: 250px;
    overflow: hidden;
}

.inner-div-ls {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.6s;
    background-image: url('lsbutton.jpg');
}

.inner-div-dr {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.6s;
    background-image: url('drbutton.jpg');
}

.inner-div-ls:hover {
    transform: scale(1.1);
}

.inner-div-dr:hover {
    transform: scale(1.1);
}

.pic {
    transition: all 0.6s;
}

.pic:hover {
    transform: scale(1.1);
}

.pic-outer {
    border-radius: 290486px;
    overflow: hidden;
}

.link:hover {
    text-decoration: underline;
}

.link:after {
    content: "*";
}

.hint {
    font-size: 0.8rem;
    color: grey;
}
