#mui-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 2rem 0;
}

.center-mui-card-container {
    justify-content: center;
}

.mui-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.mui-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mui-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mui-card-content {
    padding: 16px;
}

.mui-card-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.mui-card-content p {
    margin: 4px 0;
}

svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	width: 600px;
    background-color: transparent;
}

.svg-container svg {
    width: 50%;
    height: auto;
    max-width: 400px;
}

.svg-container svg path {
    fill: none;
    stroke: #A8223D;
    stroke-width: 2; 
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000; 
    animation: draw 1.5s infinite forwards, fillColor 1.5s ease-in-out infinite; 
    transition: stroke 0.3s ease;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillColor {
     0% {
        fill: none; 
    }
    25% {
        fill: #F0B8C8; 
    }
    50% {
        fill: #F5A8B5; 
    }
    100% {
        fill: #A8223D; 
    }
}

@media (max-width: 931px) { 
    
    .grid-container {
        align-items: center;
    }
}


@media (max-width: 645px) {
    
    #mui-card-container {
        justify-content: center;
    }   
}