main {
    max-width: 1200px;
    margin-inline: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;

    .row {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}

h2 {
    text-align: center;
    font-size: 20pt;
    letter-spacing: 2px;
}

#fetch-log {
    margin-top: 20px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);

    h3 {
        background: #161b22;
        color: #8b949e;
        font-size: 13px;
        padding: 12px 16px;
        border-bottom: 1px solid #30363d;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    p {
        padding: 10px 16px;
        color: #7ee787;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-size: 14px;
        white-space: pre-wrap;
    }

    p::before {
        content: ">";
        color: #58a6ff;
        margin-right: 10px;
        font-weight: bold;
    }

    p:last-child {
        border-bottom: none;
    }
}