body {
  background-color: #fee939;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 1.5rem;
}

.logo-container {
	display: flex;
	justify-content: center;
}

.logo {
  width: 40%;
  margin: 1rem 0;
}

.main {
  padding: 1rem;
	margin: 0 auto;
	width: 80%;
	display: flex;
	justify-content: center;
}

.player {
	width: 100%;
}

.pitch {
  width: 50vw;
	margin-top: 1rem;
	font-size: 1.5rem;
	line-height: 1.7rem;
  position: absolute;
  z-index: 10;
}

@media screen and (orientation:portrait) and (min-height: 800px) {
  .pitch {
    width: 90vw;
    font-size: 3rem;
    line-height: 3.2rem;
  }
}

p {
	margin-bottom: 1.0rem;
}

.title {
  font-size: 5rem;
	padding: 1rem;
  color: white;
  background-color: #380637;
	text-align: center;
	font-weight: bold;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.35);
}

strong {
	font-weight: bold;
}

.watch-container {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
  margin-bottom: 2rem;
}

.watch-button {
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	background-color: #fff;
	padding: 1rem;
	text-decoration: none;
	color: #000;
  border: 5px solid black;
	border-radius: 5px;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}

.watch-button:hover {
	color: #000;
	background-color: #f9f4cc;
}

.watch-button:active {
	color: white;
	box-shadow: unset;
}
