@import url('https://fonts.googleapis.com/css2?family=Alatsi&display=swap');

.marquee a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.pink a:hover {
    color: white;
}

.marquee {
    height: 26px;
    max-width: 100vw;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Suiss Regular', sans-serif;
    color: #000000;
    background-color: #ffff;
    font-size: 20px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: black;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 100s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused;
}

.marquee a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.marquee a:hover {
    color: crimson;
}

body {
    background-image: url("fishbg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
