body{
  background-color: #fff;
}
.content-box{
  display: flex;
  border: 2px solid #f8f8f8;
  justify-content: space-between;
  align-items: flex-end;
}
.image-404{
  max-width: 500px;
  height: auto
}
.aside-box{
  justify-content: left;
  align-items: center;
  margin: 10px 50px;
}

a {
color: #960707;
text-decoration: none;
background-color: transparent;
}

h1, h2{
  font-family: 'Schoolbell', cursive;  
  color: #5F788A;
  text-align: left;
}
#but, #mail{
  font-size: 14px;
  font-family: 'Arimo', sans-serif;
  color: #5F788A;
  text-align: right;
}
.contact{
  margin-top: 20px;
}
.contact-link{
  font-family: 'Arimo', cursive;  
  font-weight: 700;
  font-size: 18px;
  color: #5F788A;
  text-align: left;
}
#mail{
  font-style: italic;
  margin-right: 50px;
}

@media only screen and (max-width: 768px) {
/* For mobile phones: */
.content-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  }
.content-box, img{
  align-items: flex-end;
}

.image-404{
  max-width: 200px;
  height: auto
}
}

.manutencao-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 50%;
  margin: 0 auto;
  height: calc(100vh - 90px);
}

.manutencao-content__titles{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manutencao-content__titles h1{
  color: #1e243a;
  font-size: 3.5rem;
}

.manutencao-content__titles h2{
  color: #1e243a;
}

.manutencao-content__imagem{
  max-width: 400px;
  animation: myAnim 2s ease-in-out 0s 1 normal forwards;
}

@keyframes myAnim {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 50%;
	}

	10% {
		transform: rotate(8deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-10deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(10deg);
	}

	80% {
		transform: rotate(-8deg);
	}

	90% {
		transform: rotate(8deg);
	}
}

.manutencao-button{
  color: #1e243a;
  border: 5px solid #1e243a;
  font-family: 'Schoolbell', cursive;
  border-radius: 0.8rem;
}

.manutencao-button:hover{
  background-color: #4a91d6;
  border: 5px solid #1e243a;
}