body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    background-image: url('background.png'); /* Replace 'your-image.jpg' with your actual image path */
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Initial state */
}

/* Content Box Styles */
.content {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px; /* Reduce the padding to make it smaller */
    border-radius: 10px;
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    width: 80%; /* Adjust the width as desired */
    max-width: 600px; /* Set a maximum width to maintain readability */
}


.content h1 {
    font-size: 3em;
}

.content p {
    font-size: 1.5em;
}

a {
    color: #aad3ea; /* Light blue color, can be changed */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.content:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.9); /* Add a semi-transparent black background */
}

/* Enhance the hover effect on links */
.content a {
    color: #aad3ea; /* Or any color you prefer */
    transition: color 0.3s ease-in-out;
}

.content a:hover {
    color: #f0e68c; /* Change link color on hover, for example to khaki */
}

.consultant {
    font-weight: bold;
    margin-top: -20px;
}

@media (max-width: 600px) {
    .a {
        font-size: 0.5em; /* Reduce text size for smaller screens */
    }
}

.contact-link {
    font-weight: bold; /* Make the text bold */
    transition: transform 0.2s ease-in-out; /* Add a smooth transform transition */
}

/* Hover effect for the Contact Link */
.contact-link:hover {
    transform: scale(500); /* Increase the size on hover */
}
