* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    max-width: 1200px;
    max-height: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

.header {
    background-color: #ff0080;
    color: white;
    padding: 20px;
    border-bottom: 5px solid #ffec00;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns content to the left */
}

.header .logo {
    margin-right: 10px; /* Adds space between the logo and text */
}

.header .logo img {
    width: 40px;
    margin-right: 10px;
}

h1 {
    font-size: 24px;
    color: white;
    margin: 0; /* Removes default margin to align with the logo */
}

.content {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    background-color: #ffec00;
    padding: 20px;

}

.card {
    width: 30%;
    height: auto;
    text-align: center;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.card img {
    width: 100%;
    height: 200px; /* You can adjust the height as needed */
    object-fit: contain; /* The image will fit inside the container without being cropped */
    border-radius: 10px;
    background-color: #fff; /* Adds a background color behind the image */
}

}

.btn {
    background-color: hotpink;
    color: pink;
    border: sandybrown;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.btn:hover {
    background-color: #ff66a3;
}

/* Mobile view */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 20px;
    }

    .header {
        flex-direction: column;
    }

    h1 {
        margin-top: 10px;
        font-size: 18px;
    }
}
