html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(225deg, rgb(5, 59, 5), rgb(2, 19, 2));
    background-repeat: no-repeat;
}

.topic {
    background:linear-gradient(90deg, #00ff00, #007700);
    font-size: 36px;
    font-weight: bold;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 20px 0;
}

p {
    color:#f5f5f5;
    text-align:justify;
    font-size:16px;
}
.site-header {
    display: flex;
    justify-content: center;
    padding: 16px 16px 2px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.site-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
}

.home-logo-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0 0;
}

.home-logo {
    width: min(220px, 48vw);
    height: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .site-header {
        padding-top: 10px;
    }

    .site-brand {
        font-size: 18px;
    }

    .site-logo {
        width: 44px;
        height: 44px;
    }

    .home-logo {
        width: min(170px, 52vw);
    }
}
