body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
	background-image: url('https://i.ibb.co/WW4VZgdc/image1.png'); /* your image name */
            background-size: cover;      /* full screen fit */
            background-position: center; /* center the image */
            background-repeat: repeat;
}

.card-container {
	height:40vh;
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;
}

.event-card {
    width: 500px;
    height: 530px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    border: 2px solid #1e293b;
    background: #020617;
}

.event-card img {
    width: 500px;
    height: 530px;
    object-fit: cover;
}

.event-card h3 {
	font-size:50px;
	color: white;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Hover Effect */
.event-card:hover {
    transform: translateY(-8px) scale(1.03);
}

/* Technical Glow */
.tech:hover {
    box-shadow: 0 0 25px #00e5ff;
    border-color: #00e5ff;
}

/* Non Technical Glow */
.non-tech:hover {
    box-shadow: 0 0 25px #ff2d2d;
    border-color: #ff2d2d;
}
