/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #004100; /* Dark green background */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90px; /* Further reduce size */
    height: auto;
}

.content-section {
    text-align: center;
    flex: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%; /* Ensure it takes full width */
}

h1 {
    font-size: 4rem; /* Larger font size */
    font-family: 'Anton', sans-serif; /* Use Anton font */
    margin-bottom: 20px;
    text-transform: uppercase; /* Make header text uppercase */
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
    
}

.social-icons {
    display: flex; /* Single line layout */
    justify-content: center;
    gap: 15px; /* Reduced space between icons */
    margin-top: 20px;
}

.social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

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

.email a {
    color: white;
    text-decoration: underline;
}

.email a:hover {
    color: #cccccc;
}
/* Adjust logo size for mobile screens */
@media (max-width: 768px) {
    .logo {
        width: 40px; /* Smaller size for mobile */
        top: 10px; /* Adjust top position */
        left: 10px; /* Adjust left position */
    }
}/* Make layout more flexible on mobile screens */
@media (max-width: 768px) {
    body {
        padding: 0 15px; /* Add padding to prevent overflow */
    }

    .logo {
        width: 50px; /* Smaller logo for mobile */
        top: 10px;
        left: 10px;
    }

    .container {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center items */
    }

    .content-section {
        text-align: center;
        margin-top: 50px; /* Add spacing to avoid overlap */
    }

    .social-icons {
        display: flex;
        flex-wrap: wrap; /* Allow icons to wrap */
        justify-content: center;
        gap: 10px; /* Reduce gap */
        margin-top: 20px;
    }
}/* Make social media icons 2x4 grid on mobile */
@media (max-width: 768px) {
    .social-icons {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 columns */
        gap: 10px;
        margin-top: 20px;
    }
}/* Make logo responsive on mobile */
@media (max-width: 768px) {
    .logo {
        width: 40px; /* Smaller logo size */
        top: 10px; /* Adjust top position */
        left: 10px; /* Adjust left position */
    }
}