#title {
    text-align: center;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../../img/Backgrounds/tech.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
	  align-items: center;
}

#title img {
    width: 300px;
}

#title span {
    font-size: 32px;
    margin: 10px 0 20px 0;
    font-weight: bold;
}

#title h1 {
	font-family: 'Press Start 2P', monospace;
    font-size: 40px;
    text-shadow: 0px 0px 20px #333333;
	letter-spacing: 3px;
	margin-top: 30px;
}

@media only screen and (max-width: 1050px) {
	#title img {
		max-width: 50%;
	}

	#title span {
		font-size: 24px;
	}

	#title h1 {
		font-size: 4vw;
	}
}

main {
	padding: 20px 0 5px 0;
}

#winners h2, #schedule h2, #rules h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 32px;
	text-align: center;
}

#winners img {
  width: 100%;
  height: auto;
  margin: 20px auto;
  border: 1px solid white;
}

#schedule table {
	width: 100%;
	margin: 20px auto 0 auto;
	border-collapse: collapse;
}

#schedule th, #schedule td {
	background-color: #0d2232;
	text-align: center;
	font-size: 18px;
	border: solid 1px #fff;
	padding: 7px;
}

#schedule th {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
}

#rules {
	margin-top: 50px;
	padding: 20px 20px 20px 20px;
	width: 100%;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 0.2);
	text-align: center;
}

#rules span {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 30px;
	margin-top: 30px;
}