body{
    padding: 0;
    margin-left: 100;
    background-color: white;
}

div.col {
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 80px;
  }

button{
    background-color: #feffff;
    font-size: 20px;
    font-weight: bold;
}

div.card-img-top {
    width:  100px;
    height: 100px;
}

/* CSS for the container */
.container {
    display: flex; /* Use Flexbox for alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    background: linear-gradient(to right, #3498db, #2ecc71); /* Two-color gradient background */
    color: white; /* Text color for contrast */
    padding: 20px; /* Add some padding */
    border-radius: 10px; /* Optional: rounded corners */
}

/* CSS for the image */
.img-front {
    max-width: 50%; /* Ensure the image width is up to 50% of the container */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Space between image and text */
}

/* CSS for the text content */
.text-content {
    max-width: 50%; /* Ensure the text container width is up to 50% of the container */
}

h1 {
    margin: 0; /* Remove default margin */
    font-size: 2em; /* Adjust font size */
}

/**/

/* Basic styles for the button */
.cta-button {
    background-color: #3498db; /* Button color */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    padding: 15px 30px; /* Padding for size */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* Uppercase text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}

/* Hover effect */
.cta-button:hover {
    background-color: #2980b9; /* Darker color on hover */
    transform: scale(1.05); /* Slightly larger on hover */
}

/* Active effect (when clicked) */
.cta-button:active {
    background-color: #1f618d; /* Even darker color on click */
    transform: scale(0.98); /* Slightly smaller on click */
}

/* Focus effect (accessibility) */
.cta-button:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); /* Custom focus outline */
}
