.coral-pixels-regular {
  font-family: "Coral Pixels", serif;
  font-weight: 400;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('/assets/trident-cursor.cur'), pointer;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: url('/assets/texture.gif');
    background-size: auto;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;
    width: 80%;
    position: relative;
    max-width: 1200px;

}

header {
    width: 100%;
    color: white;
    padding: 24px 0;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
}


header h1 {
    font-size: 3.5rem;
    margin: 0 0 16px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
}

.header__content {
    width: 100%;
    position: relative;
}

.fish {
    width: 100px;
    height: auto;
    position: absolute;
    top: -32px;
}

.fish--1 {
    left: -32px;
}

.fish--2 {
    right: -32px;
    transform: scaleX(-1);
}


@keyframes moveBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -1000px 0;
        /* ajuste conforme o tamanho da imagem */
    }
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding: 8px;
    width: 100%;
    border: 4px solid #0091ff76;
    margin: 0 auto;
    box-shadow: 16px 16px 8px rgba(0, 0, 0, 0.2);
    background: url('/assets/ocean-texture.jpg') repeat center center/cover;
    animation: moveBackground 60s linear infinite;
}

.nav li {
    margin: 0 8px;
}

.nav li a {
    color: white;
    text-decoration: none;
}

.nav li:hover {
    text-decoration: underline;
    font-weight: bold;
}

.nav li.anime-girl-item img {
    border: 2px solid #ff96f3;
    background-color: #7e1071a8;
}

p {
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}


footer {
    width: 100%;
    color: white;
    text-align: center;
    height: 40px;
    padding: 24px 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;
    bottom: 0;
}

@media (max-width: 767px) {
    body {
        flex-direction: column;
        overflow: auto;
    }
    .content {
        padding: 20px;
    }
}

@media (min-width: 768px) {
}

