/* sbmacc.org stylesheet */


body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: px;
    background-color: #0f172a; /* Dark mode background */
    color: #ffffff; /* Light text for dark background */
}

.logo-title {
    text-align: center;
    font-weight: bold;
    font-size: xx-large;
    max-width: 300px;
}

.logo-title img {
    text-align: center;
    font-weight: bold;
    font-size: xx-large;
    width: 100%;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    width: 100%;
}

.button {
    background-color: #2196F3;
    color: white;
    padding: 15px 30px;
    font-size: 18.66px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.button:hover {
    background-color: #0d8bf0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button:active {
    background-color: #0b7ed9;
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-link:hover {
    transform: scale(1.1);
}

.instagram {
    color: #E1306C;
}

.twitter {
    color: #1DA1F2;
}