*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  background: #000000;
  background: linear-gradient(327deg,rgba(0, 0, 0, 1) 0%, rgba(38, 0, 74, 1) 100%);
  height: 100dvh;
  max-height: 100dvh;
}
main{
  max-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
}
body img{
  width: 100%;
  max-width: 500px;
}
body h1{
  color: #f1f1f1f1;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1rem, 2vw + 0.5rem, 2.5rem);
}
main .contato{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5REM;
}
main .contato p{
  color: #f1f1f1f1;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  text-align: center;
}
main .contato button{
  width: 100%;
  max-width: 250px;
  padding:.5rem 1rem;
  border-radius: 1rem;
  display: flex;
  gap: .5rem;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  background-color: #25d366;
  transition: all ease-in-out .3s;
  border: none;
  color: #f1f1f1f1;
}
main .contato button:hover{
  transform: scale(1.1);
}