.background {
    position: fixed;
    top: 0;
    right: 0%; /* Adjust this value to position the image as desired */
    width: 58%; /* Adjust this value to control its size */
    height: 100%;
    z-index: 1;
    background-image: url('1-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.containerr {
    display: flex;
    /*justify-content: center;
    align-items: center;*/
    height: 100vh;
    position: relative;
    z-index: 1;
}

.info-cards {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack children in a vertical column */
    align-items: flex-start; /* Align items to the start of the cross axis (horizontal) */
    gap: 20px; /* Space between each .info-card */
    max-width: 800px; /* Maximum width of the container */
    margin-top: 40px; /* Top margin */
    margin-bottom: 40px; /* Bottom margin */
    margin-left: auto; /* Center container horizontally */
    margin-right: auto; /* Center container horizontally */
}


.info-card {
    /* Existing styles for .info-card here */
    position: relative; /* New - Position the .info-card absolutely */
    top: 0; /* New - Align the top edge of .info-card with the top edge of .info-cards */
    left: 0; /* New - Align the left edge of .info-card with the left edge of .info-cards */
    /* Add padding, background, font styles from the existing .info-card here */
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.info-card h2 {
    margin-top: 0;
}

.info-card p {
    margin-bottom: 0;
}
.info-card.specific {
    margin: auto; /* This will center the card in the flex container */
}
.info-card.specific {
    align-self: center; /* This will center the card horizontally within the flex container */
}

