body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #1C6683; /* Deep blue background */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Minimum height to cover full viewport height */
}

.container {
    color: #ffffff; /* White text color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
    max-width: 400px; /* Set a max width for the container */
    width: 100%; /* Make container width responsive */
}

.logo {
    margin-bottom: 20px; /* Space for the logo */
}

.logo img {
    max-width: 100%; /* Ensures the logo fits within the container */
    height: auto; /* Maintains the aspect ratio of the logo */
}

.button-container {
    text-align: center;
}

.button {
    display: block; /* Make buttons block level for vertical stacking */
    width: 100px; /* Button width */
    height: 100px; /* Button height */
    margin: 10px auto; /* Centering buttons */
    padding: 0; /* No padding */
    border-radius: 15px; /* Rounded corners */
    color: #98774C; /* Brownish tone icon color */
    text-decoration: none;
    font-size: 60px; /* Large icon size */
    line-height: 100px; /* Center the icon vertically */
    border: none; /* No border */
    background-color: transparent; /* Transparent background */
    transition: background-color 0.3s, color 0.3s;
}

.phone:hover {
    background-color: #4CAF50; /* Example: a green color for phone calls */
}

.facebook:hover {
    background-color: #3b5998; /* Facebook's brand color on hover */
}

.instagram:hover {
    background-color: #e4405f; /* Instagram's brand color on hover */
}

.email:hover {
    background-color: #0077B5; /* A generic email color on hover */
}

.logo img {
    max-width: 150px; /* Adjust logo size for small screens */
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .container {
        padding: 10px;
        max-width: 100%; /* Allow container to expand fully on small screens */
    }

    .button {
        width: 80px; /* Smaller button size for small screens */
        height: 80px;
        font-size: 50px; /* Smaller icon size for small screens */
        line-height: 80px;
    }

    .logo img {
        max-width: 80%;
    }
}
