.maincourse {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 60px;
}

.bungkus {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.card {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #3DC2EC;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card h3 {
    margin-top: 10px;
    font-size: 16px;
}

h1 {
    font-weight: 800;
    font-size: 100;
    padding-bottom: 30px;
    color: #fff;
    text-align: center;
}
h2 {
    font-weight: 800;
    padding-bottom:50px;
}

.card:hover{
    transform: scale(1.1,1.1);
}
