* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #343a40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.logo {
    width: 50%; /* Sets the logo width to 50% */
    height: auto; /* Maintains the aspect ratio */
    margin-bottom: 20px; /* Adds some space below the logo */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact {
    margin-top: 20px;
}

.contact a {
    color: #007bff;
    text-decoration: none;
}

.email-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #0000FF; /* Email button blue */
    color: #FFFFFF; /* Email button white text */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}

.email-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 1.5em;
}

/* Facebook icon color */
.social-icons a.facebook {
    color: #3b5998; /* Facebook blue */
}

/* Instagram icon color */
.social-icons a.instagram {
    color: #e1306c; /* Instagram red */
}

.social-icons a:hover {
    opacity: 0.8;
}

footer {
    text-align: center;
    margin-top: 20px;
}

.social-footer {
    margin-top: 10px;
}

.social-footer a {
    margin-left: 10px;
    font-size: 1.5em;
}

/* LinkedIn icon color */
.social-footer a.linkedin {
    color: #0077b5; /* LinkedIn blue */
}

.social-footer a:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .email-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .social-icons a {
        font-size: 1.2em;
    }
}
