 main {border-radius: 10px;
            width: 600px;
            box-shadow: 5px 5px 15px;
            padding: 10px;
            margin: auto;}

.container {
      display: flex;          /* coloca os itens lado a lado */
      align-items: center;    /* alinha verticalmente */
      gap: 20px;              /* espaço entre imagem e texto */
    }

    .imagem {
      width: 50%;
    }

    .imagem img {
      width: 100%;
      height: auto;
    }

    .texto {
      width: 50%;
    }
.container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pagina {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
body {
   background: linear-gradient(
    to bottom,
    #1c1c1c,
    #b71c1c,
    #ff8a80,
    #ffffff
  );
  color: #fff;

}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
}
.escrito-mao {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  line-height: 1.6;
}
.destaque a {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #c62828, #ff6f61);
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.destaque a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff6f61, #ff9a9e);
}