html, body {
    height: 100%;
}

body {
    font-family: 'Fira Mono', 'Consolas', monospace;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #f8e1f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#site-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

header {
    background: #1a1a1a;
    color: #f8e1f4;
    padding: 20px 0 10px 0;
    text-align: center;
    border-bottom: 1px solid #23233a;
}

.logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.site-title {
    background: #ffb3e6;
    color: #121212;
    font-size: 1.5rem;
    padding: 2px 10px;
    border-radius: 4px;
    font-family: inherit;
    letter-spacing: 1px;
}

nav {
    margin: 10px 0 0 0;
}

nav a {
    color: #ff6ec7;
    text-decoration: underline dotted;
    margin: 0 8px;
    font-size: 1rem;
}

nav a:hover {
    color: #ffe0f7;
    text-decoration: underline solid;
}

.container {
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.main-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.intro {
    flex: 1;
}

h2 {
    color: #ff6ec7;
    font-size: 1.1rem;
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: inherit;
    font-weight: normal;
}

ul {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
    font-size: 1rem;
}

.highlight {
    color: #ffb3e6;
    font-weight: bold;
    text-decoration: underline;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.btn {
    background: #ff6ec7;
    color: #121212;
    border: none;
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}

.btn:hover {
    background: #ffb3e6;
    color: #121212;
}

.side-img {
    width: 190px;
    height: auto;
    margin-left: 20px;
    margin-top: 30px;
    image-rendering: pixelated;
}

footer {
    background: #1a1a1a;
    color: #ffb3e6;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    margin-top: 60px;
    border-top: 1px solid #23233a;
}

.trans {
    font-weight: bold;
    background: linear-gradient(90deg, #5bcffa 0%, #f5abb9 33%, #fff 66%, #f5abb9 83%, #5bcffa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: transFlagFlash 2s linear infinite;
}

@keyframes transFlagFlash {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}