/* Reset some default styling */
body, h1, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #051438;
    color: #333;
    overflow: auto; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-media {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 10px; /* space between the icons and the footer */
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
}

.social-media img {
    display: inline-block; /* Ensures images are treated as inline elements */
}

.image img {
    width: 100%;
    height: auto;
    max-width: 600px; /* Adjust based on your needs */
    border-radius: 10px;
    display: block;
}

.content {
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 5px 5px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.site-footer {
    background-color: #051438; 
    color: white;
    text-align: center;
    padding: 5px 0; /* Reduced padding */
    font-size: 0.7em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px; /* Reduced space between lines */
}
.site-footer p {
    margin: 1px 0; /* Reduced margins for paragraph elements */
}
.site-footer a {
    color: #007bff; 
    text-decoration: none;
}

.site-footer a:hover {
    color: #0056b3; 
    text-decoration: underline;
}

/* Responsive styling */
@media (max-width: 768px) {
    .content {
        margin-bottom: 10px;
    }

    .cta-button {
        padding: 5px 10px;
        font-size: 0.9em;
    }
    .site-footer {
        font-size: 0.6em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }
    .site-footer {
        font-size: 0.5em;
    }
}