body.page-speakers .nav-right a[href="speakers.html"] {
    color: #00eef9;
}
.title {
    display: none;
}
h2 {
	color: #0361f9;
	font-size: 1.5rem;
	margin: 0 auto;
    font-weight: bold;
    border-bottom: 2px solid silver;
	text-align: center;
}
.speakers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: calc(100vh - 0px);
	margin: 0 auto;
	text-align: center;
	z-index: 0;
    margin-bottom: 50px;
}
.speakers-inner {
    max-width: 1000px;
	z-index: 3;
	position: relative;
	padding-top: 100px;
}
.speakers-title {
	font-size: clamp(1.5rem, 10vw, 2rem);
	font-weight: 700;
	padding: 10px;
	z-index: 3;
	position: relative;
    color: #5851ff
}
.speakers-list {
	margin: 10px;
    padding: 15px;
	display: flex;
	justify-content: center;
	position: relative;
    z-index: 10;
    text-align: center;
}
.speakers-list-wrapper {
    width: 100%;
    max-width: 1000px;
    border-radius: 4px;
}

table {
    width: 100%;
    margin: 0 auto;
}
th,
td {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding: 2px 2px;
    align-content: center;
    padding-top: 10px;;
}
th {
    text-align: center;
    border: 0;
    font-size: 0.8rem;
    margin: 100px;
    padding-left: 10px;
}
td {
    text-align: left;
    padding-left: 10px;
}
td::after {
    content: '';
    display: block;
    border-bottom: 1px solid #000;
    width: fit-content;
}

@media (max-width: 600px) {
    .speakers-inner {
        padding-bottom: 1rem;
    }
    .speakers-list {
		height: auto;
        align-items: center;
    }
}