body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    gap: 10px;
}

.social-links a:hover {
    background-color: #555;
}

.back-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.back-link:hover {
    background-color: #555;
}