body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #7fa4c9;/* Light Peach */
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
   /* Replace with your background image */
    background-size: cover;
    background-position: center;
}





.container {
    max-width: 600px;
    width: 500px;
    padding: 20px;
    background-color: #ffffff;/* Semi-transparent white background */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Text shadow for better readability */
}

.logo {
    max-width: 300px; /* Adjust logo size as needed */
    height: auto;
    margin-bottom: 20px; /* Add space below the logo */
}

h1 {
    font-size: 35px;
    color: #333;
    margin-top: 10px; /* Slightly reduce top margin */
}

p {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
    line-height: 1.6; /* Improve readability with slightly increased line height */
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin: 0 15px;
    color: #fff; /* White icon color for better visibility */
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
}

.social-media a:hover {
    transform: scale(1.1);
}

.social-icon.facebook {
    background-color: #557ed5; /* Adjusted Facebook blue */
}

.social-icon.instagram {
    background-color: #ff0533; /* Adjusted Instagram pink */
}

.social-icon.linkedin {
    background-color: #0077b5; /* Adjusted LinkedIn blue */
}

.social-icon.x {
    background-color: #000000; /* Red for X */
}
