body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.contact-container h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333333;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
    color: #555555;
}

.contact-info a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
}

@media (max-width: 600px) {
    .contact-container {
        padding: 20px;
    }

    .contact-container h1 {
        font-size: 24px;
    }

    .contact-info p {
        font-size: 16px;
    }
   
}
