body {
    background-color: #051a0a;
    color: #8fbc8f;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 95%;
    max-width: 1000px;
    border: 5px solid #808080;
    background-color: #0a1f10;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

header {
    border-bottom: 5px solid #808080;
    padding: 15px;
    text-align: center;
    position: relative;
}

.header-decoration {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 0.8rem;
    color: #8fbc8f;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: normal;
}

main {
    padding: 40px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.bio-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    transform: scale(0.8);
    transform-origin: top right;
}

.links {
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
}

.links em {
    font-style: italic;
    color: #a0a0a0;
}

.links a {
    color: #a0a0a0;
    text-decoration: none;
    display: inline-block;
}

.links a span {
    display: inline-block;
    transition: transform 0.3s;
    animation: bounce 0.5s ease infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

.buttons {
    display: flex;
    flex-direction: column;
}

.gif-button {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: #1a2f20;
    border-top: 2px solid #808080;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.gif-button img {
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: auto;
    flex-shrink: 1;
    min-width: 0;
}

.gif-button:hover {
    background-color: #2a3f30;
}