body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d4fddc; /* Light green background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 20px;
    color: #0c3c89; /* Deep blue color */
    font-weight: bold;
}

.content {
    display: flex;
    gap: 20px;
    width: 100%;
}

.text-section {
    flex: 1;
}

.text-section h1 {
    font-size: 32px;
    color: #1c1c1c; /* Blackish text */
    margin-bottom: 20px;
}

.text-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a; /* Dark gray text */
}

.start-btn {
    /* background-color: #fff; */
    /* border: 2px solid #000; */
    /* padding: 10px 20px; */
    /* border-radius: 25px; */
    font-size: 16px;
    /* cursor: pointer; */
    /* transition: background-color 0.3s ease; */
    /* border-radius: 25px; */
    bottom: none;
    height: 25px;
    width: 50%;
    background-color: white;
    border: 1px white ;
    border-radius: 70Px;
    height: 50px;
    
}

/* .start-btn:hover { */
    /* background-color: #f0f0f0; */
/* } */

.image-section {
    flex: 1;
    position: relative;
}

.team-photo {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

#designCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}



/* Add a breathing animation to images */
/* Add a breathing animation to images */
.image-section .team-photo {
    width: 100%;
    border-radius: 10px;
    animation: breathe 3s infinite ease-in-out; /* Apply the breathing animation */
}

/* Define the breathing animation */
@keyframes breathe {
    0% {
        transform: scale(1); /* Normal size */
    }
    50% {
        transform: scale(1.05); /* Slightly larger */
    }
    100% {
        transform: scale(1); /* Return to normal size */
    }
}