p, h1, h2, h3, h4, h5, h6 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h3, h2 {
    color: rgb(2, 132, 132) !important;
}

p img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img {
    width:50%;
}

.gallery-img {
    height: 250px;
    object-fit: cover;
}

body {
    /* background-color: #f8f9fa; */
}

.speaker-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.speaker-img:hover {
    transform: scale(1.05);
}
.speaker-card {
    text-align: center;
    padding: 20px;
}

.trapezium {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.trapezium:hover {
    transform: scale(1.05);
}

.prize-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.prize-amount {
    font-size: 1.2rem;
    text-wrap: wrap;
}

.prize-container {
    padding: 20px;
}