body {
	background: slategray;
	margin: 0;
}

h1 {
	position: relative;
	color: white;
	text-align: center;
	font-size: 50px;
	margin: 0;

	top: 25px;
}

.square {
	width: 100%;
	height: 100px;
	background-color: #263238;
	padding: 0;
	box-sizing: border-box;
	position: relative;
}

.support, .about {
	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 32px;
	color: white;
	position: absolute;
	top: 0;

	height: 100px;
	width: 150px;

	transition: 0.4s;
}

.about {
	right: 0;
}

.support {
	right: 150px;
}

.support:hover, .about:hover {
	background-color: rgba(57, 83, 80, 1.0);
	font-size: 38px;
	transition: 0.25s;
}

.support:active, .about:active {
	background-color: rgba(47, 53, 60, 0.0);
	font-size: 32px;
	transition: 0.25s;
}

@media only screen and (max-width: 700px) {
  .about {
    top: 100px;
  }

  .support {
  	top: 100px;
  }

  .square {
  	height: 200px;
  }
}

@media only screen and (max-width: 1000px) {
  .support {
    left: 0;
  }
}

a:link { 
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none; 
} 
a:active { 
  text-decoration: none; 
}