body {
    background: linear-gradient(135deg, #f5f7fa, #e2e8f0);
    font-family: 'Poppins', sans-serif;
    color: #333;
}
header {
    background: #4a90e2;
    color: #fff;
    padding: 3em 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
header h1 {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
main {
    padding: 2em 0;
}
.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.meme-section {
    text-align: center;
    padding: 2em;
    margin-top: 2em;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.meme-section h2 {
    color: #4a90e2;
    margin-bottom: 1em;
}
.meme {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
}
.sponsor-section {
    text-align: center;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2em;
}
.sponsor-section img {
    max-width: 200px;
    transition: transform 0.3s ease;
}
.sponsor-section img:hover {
    transform: scale(1.1);
}
.sponsor-text {
    margin-top: 1em;
    font-size: 1.1em;
    color: #555;
}
@media only screen and (max-width: 800px) {
    header h1{
      font-size: 1.8em;
    }
  }