body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
/* 
.design-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    height: 60%;
    margin-top: 50px;
}

h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 700;
    color: #212529;
    filter: drop-shadow(1px 1px 1px gray);
    flex: 0 1 auto;
    margin: 25px;
    text-align: center;
}

.image {
    width: 30%;
    height: auto;
    margin-top: 50px;
    margin-bottom: 30px;
    filter: drop-shadow(8px 8px 10px gray);
} */

/* Card Styles */

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px; 
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.left,
.right {
    flex: 1;
    padding: 20px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left h2 {
    margin-bottom: 10px;
    color: #212529;
    filter: drop-shadow(1px 1px 1px gray);
}

.left p {
    color: #666;
    line-height: 1.6;
}

.learn-more {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
}

.line {
    border: none; 
    border-top: 1px solid blue; 
    width: 80px; 
    margin: 2px 0; 
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

a .website {
    width: 150px;
    height: 50px;
}

a .website:active {
    transform: scale(0.95); 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image {
    max-width: 250px; 
    border-radius: 10px;
    /* filter: drop-shadow(8px 8px 10px gray); */
}

/* Media Query */

@media (max-width: 768px) {
    .design-container {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .image {
        width: 80%;
    }

    .card {
        flex-direction: column; 
        max-width: 90%; 
    }

    .right .card-image {
        max-width: 100%;
    }
    
    h1 {
        font-size: 1.5em; 
        margin: 20px;
    }

    .image {
        width: 80%;
        margin: 0 auto; 
    }
}
