/* Resetting default browser margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Existing CSS content... */

body {
    /* ... other styles */
    margin: 0; /* Ensuring no margin on the body */
    overflow-x: hidden; /* Prevent any horizontal overflow */
}

.main-area {
    background-color: #147b5f;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px; /* Added padding to ensure content doesn't touch screen edges */
}

.adoptify-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.adoptify-mascots {
    max-width: 400px;
    margin: 20px 0;
}

.availability-section {
    margin: 20px 0;
    text-align: center; /* Center aligned content */
    border: 2px solid #fff; /* Added a border */
    padding: 20px 30px; /* Padding for breathing space */
    border-radius: 15px; /* Rounded edges */
}

.available-in,
.coming-soon-to {
    margin: 15px 0;
    font-size: 1.6em;
    font-weight: bold;
    color: #fff;
}

.french-site-link {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
    font-size: 1.2em; /* Increased font size for prominence */
}

.french-site-link:hover {
    color: #ddd;
}

/* Social buttons adjustment */
.social-btn {
    margin-top: 40px; /* Added a bit more space above */
    display: flex;
    justify-content: center; /* Center aligned the social buttons */
    gap: 20px; /* Spacing between individual social buttons */
}

/* Ensuring link colors are white for all states */
.main-area .social-btn > li > a,
.main-area .social-btn > li > a:link,
.main-area .social-btn > li > a:visited {
    color: #fff;
}

/* Retaining the slightly dimmed white for hover/active states */
.main-area .social-btn > li > a:hover,
.main-area .social-btn > li > a:active {
    color: #ddd;
}
