/* Global Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Main Container */
.container {
    text-align: center;
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
}

/* Logo */
.logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

/* Headings */
h1 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

/* Link Sections */
.link-list,
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Buttons */
.button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 16px;
    margin: 8px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 250px;
    text-align: center;
}

.button:hover {
    background-color: #fff;
    color: #000;
}
