main {
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    border: 4px solid var(--bg-tertiary);
    width: 80%;
    max-width: 40%;
    padding: 40px;
    margin: 2% 2% 2% 2%;
}

section h1 {
    text-decoration: underline;
    margin-bottom: 20px;
}

section p {
    margin: 15px 0;
    font-size: 18px;
}

section a {
    color: var(--text-secondary);
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    section {
        width: 90%;
        max-width: 100%;
        padding: 20px;
    }
}
