body {
    font-family: "Inter", sans-serif;
    margin: 0;
    background: linear-gradient(45deg, #1a1405, #1a1407, #261f0f);
    animation: gradient 1s linear infinite;

    color: black;
}
p {
    font-size: 15px;
    margin-left: 18px;
    color: snow;
}

th {
    font-size: 15px;
    margin-left: 18px;
    color: yellow;
}

.collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 80%;
    margin: 20px auto;
}

.collage img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

table {
    width: 95%;
    margin: 5px auto;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

tr:hover {
    background: rgba(255, 255, 0, 0.15);
    transition: 0.2s;
}

td {
    font-size: 15px;
    margin-left: 18px;
    color: lightyellow;
}

a {
    font-size: 15px;
    margin-left: 18px;
    color: yellow;
}

.hero {
    height: 10vh;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navigation {
    height: 5vh;
    background: yellow;
    display: flex;
    flex-direction: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    color: black;
    margin-left: 5px;
    margin-right: 5px;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    letter-spacing: 3px;
    color: yellow;
    text-transform: uppercase;
}
h2 {
    font-family: "Pacifico", cursive;
    font-size: 20px;
    margin-left: 10px;
    letter-spacing: 1px;
    color: #ebd107;
    text-transform: uppercase;
}
h3 {
    font-family: "Pacifico", cursive;
    font-size: 15px;
    margin-left: 13px;
    letter-spacing: 1px;
    color: #9e8d08;
    text-transform: uppercase;
}
strong {
    display: inline-block;
    font-weight: bold;

    background: linear-gradient(
        90deg,
        red,
        orange,
        yellow,
        green,
        cyan,
        blue,
        violet
    );
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation:
        gradient 6s linear infinite,
        scale 2s ease-in-out infinite alternate;
}

@keyframes gradient {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 300%;
    }
}

@keyframes scale {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

b {
    display: inline-block;
    font-style: italic;

    background: #ebd107;
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

i {
    display: inline-block;
    font-style: italic;

    background: gray;
    font-size: 10px;
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

em {
    display: inline-block;
    font-style: italic;
    font-weight: bold;

    background: linear-gradient(
        90deg,
        #655bc2,
        #5bb6c2,
        #5bc286,
        #a3c25b,
        #a3c25b,
        #c2755b,
        #c25b84,
        #b15bc2
    );
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradient 2s normal infinite;
}

em:hover {
    animation: scale 1s ease-out infinite alternate;
}

@keyframes scale2 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero {
        height: auto;
        padding: 15px;
        text-align: center;
    }

    h1 {
        font-size: 16px;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 18px;
        margin-left: 10px;
    }

    h3 {
        font-size: 14px;
        margin-left: 10px;
    }

    p {
        font-size: 14px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .navigation {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .nav {
        margin: 5px 0;
        display: block;
    }

    table {
        width: 100%;
        font-size: 12px;
    }

    td,
    th {
        font-size: 12px;
        padding: 6px;
    }

    .collage {
        grid-template-columns: 1fr;
        width: 95%;
    }

    .collage img {
        border-radius: 2px;
    }
}

form {
    width: 96%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    font-family: "Inter", sans-serif;
    color: white;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    form {
        width: 95%;
        padding: 15px;
        margin: 10px auto;
    }
}

label {
    margin-bottom: 5px;
    font-size: 14px;
    color: yellow;
}

input {
    width: 96%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    border-radius: 2px;
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    color: white;
}

input:focus {
    border: 1px solid yellow;
    background: rgba(0, 0, 0, 0.6);
}

button {
    width: 100%;
    padding: 10px;
    background: yellow;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: scale(1.03);
}

.footer {
    margin-top: 40px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: yellow;
    text-align: center;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    margin: 5px 0;
}

pre {
    width: 92%;
    max-width: 92%;
    margin: 20px auto;
    padding: 15px;

    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;

    color: #f5f5b0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.5;

    white-space: pre-wrap;
}
