


html, body {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
}

.header {
	background-color: #27a9f5;
	text-align: center;
	justify-content: space-between;
  align-items: center;
	font-family: Comic Sans MS;
	width: auto;
	height: 200px;
	position: relative;
	padding: 50px;
	display: flex;
}


div {
  padding: 50px;
}

nav {
  display: flex;
  flex-direction: row;
  background-color: grey;
  height: 200px;
  width: auto;
}

.footer {
	background-color: #27a9f5;
	text-align: center;
	justify-content: space-between;
  align-items: center;
	font-family: Comic Sans MS;
	width: auto;
	position: relative;
	padding: 50px;
	display: flex;
  text-decoration: none;
}


.home-body {
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
  padding: 0px;
}

.tv-button-container {
  background-size:600px;
  display: grid;
  grid-template-columns: 400px 400px;
  grid-template-rows: 400px 400px;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: Comic Sans MS;
}

.tv-button {
  width: 100%;
  height: 200px;
  background-image: url('https://ner5y.neocities.org/tv%20idle.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  display: flex;
}

.tv-button:hover {
  background-image: url('https://ner5y.neocities.org/tv%20hover.png');
  background-repeat: no-repeat;
}

.tv-button:active {
  background-image: url('https://ner5y.neocities.org/tv%20active.png');
  background-repeat: no-repeat;
}

.curtain {
  background-color: darkred;
  padding: 0px;
  width: 25%;
  height: 100%;
}

.switch-button {
  background-color: cyan;
  cursor: pointer;
}

.switch-button:hover {
  background-color: blueviolet;
}

.switch-button:active {
  background-color: azure;
}

a {
  color:white; 
  text-decoration:none;
  font-family: Comic Sans MS;
}
