html, body {
  overflow: hidden;
}

body{
  max-width: 1280px;
  background-color: rgb(30, 30, 30);
  color: #DCDCAA;
  font-family: 'Courier New', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  margin: auto;
  text-align: center;
  
  overflow-x: hidden;
}

.container{
  max-width: 610px;
  box-sizing: border-box;
}

h1{
  border-bottom: 2px solid #C678DD;
  padding-bottom: 10px;
  white-space: nowrap;
  box-shadow: 0 5px 5px -5px #C678DD;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #C678DD;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0px 2px 6px rgba(198, 120, 221, 0.4);
}

.cta-button:hover {
  background-color: #DCDCAA;
  color: #333333; /* texto escuro no hover pra contrastar com o amarelo */
  box-shadow: 0 2px 6px rgba(220, 220, 170, 0.6);
}

.cursor{
  animation: blink 1s ease-in-out infinite;
  display: inline-block;
}

@keyframes blink{
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 576px) {
  body{
    
    
    padding: 20px;
    height: 100vh;
    align-items: center;
  }

  .container {
    max-width: 100%;
  }

  h1{
    font-size: 1.5rem;
    white-space: normal;
    word-break: break-word;
  }

  .cta-button{
    margin-top: 4px;
    padding: 10px;
    font-size: 1rem;
    box-sizing: border-box;
  }

  p{
    font-size: 1rem;
  }
}