*
{
    margin:0;
    font-family:Arial;
}
body{
    background:#f5f5f5;
}
.menu .speaker
{
	text-decoration:underline;
	text-underline-offset:.5vw;
	text-decoration-thickness:.1vw;
}
.hero{
    text-align:center;
    padding:170px 20px 50px 20px;
    background:#003366;
    color:white;
}
.hero h1{
    font-size:42px;
    margin-bottom:10px;
}
.hero p{
    font-size:18px;
}
.join
{
	background:#f5f5f5;
	font-size:clamp(1.5rem,2vw,2rem);
	color:#0f3ea6;
	display:flex;
	justify-content:center;
	padding:10px;
	gap:clamp(1rem,2vw,1.5rem);
}
.join_register,.join_speaker
{
	margin-top:20px;
	color:black;
	text-decoration:none;
	text-align:center;
	background:orange;
	border:none;
	font-size:2rem;
	font-weight:bold;
	padding:1.5vw;
	border-radius:15px;
	display:block;
	cursor:pointer;
	margin-bottom:2vw;
	transition:.4s;
}
.join_register:hover,.join_speaker:hover
{
	background:#e39505;
}
.speaker_label{
	text-align:center;
	color:#0066cc;
}
.speakers{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
	gap:60px;
	padding:60px;
}
.card{
	width:350px;
	height:500px;
	object-fit:cover;
	border-radius:10px;
	overflow:hidden;
	box-shadow:0 10px 20px rgba(0,0,0,0.2);
	transition:transform .5s ease;
}
.card img{
	padding:2px;
	height:400px;
	width:100%;
	object-fit:cover;
	border-radius:10px;
	box-shadow:0 10px 20px rgba(0,0,0,0.2);
}
.card h3{
	margin:5px 15px;
}
.card:hover
{
	transform:scaleX(1.05);
}
.footer-box-link h3
{
	margin-left:2vw;
}
