body {
    background-color: #1b1b1b;
    color: #f5f0e6;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    line-height: 1.7;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 24px 40px;
}

h2 {
    font-size: 34px;
    margin-top: 15px;
    margin-bottom: 20px;
    color: #f0b24a;
    text-align: center;
}

p {
    font-size: 20px;
}

hr {
    border: none;
    border-top: 1px solid #555;
    width: 70%;
    margin: 50px auto;
}

a {
    color: #ece6da;
    text-decoration: none;
}

.banner {
    width: 100%;
    display: block;
    border-radius: 4px;
    margin-bottom: 50px;
}

.content {
    max-width: 680px;
    margin: 0 auto;
}

.social-links {
    display: grid;
    grid-template-columns: 220px 220px;
    grid-template-areas:
        "youtube youtube"
        "facebook instagram"
        "tiktok x";
    gap: 18px 30px;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    box-sizing: border-box;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #2b2b2b;
    padding: 10px 20px;
    border-radius: 16px;
    color: #ece6da;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #383838;
    color: #f0b44c;
    transform: translateY(-2px);
}

.social-links i {
    color: #f0b44c;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.youtube-button {
    grid-area: youtube;
    justify-self: center;
}

.facebook-button {
    grid-area: facebook;
}

.instagram-button {
    grid-area: instagram;
}

.tiktok-button {
    grid-area: tiktok;
}

.x-button {
    grid-area: x;
}

@media (max-width: 600px) {
    .social-links {
        grid-template-columns: 1fr;
        grid-template-areas:
            "youtube"
            "facebook"
            "instagram"
            "tiktok"
            "x";
    }

    .social-links a {
        width: 100%;
    }
}

.contact-email {
    text-align: center;
}