* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1rem; /* Add overall body padding to prevent overflow */
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px; /* Prevents it from stretching too wide on large screens */
    padding: 0 1rem; /* Ensures spacing from screen edges on mobile */
}

.logo {
    max-width: 30%;
    height: auto;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem;
}

.social-link {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
