body{
  font-family:sans-serif;
  background:#ccc1ad;
  margin:0;
  padding:40px;
 color:#837965;
}

.container{
  max-width:1000px;
  margin:auto;
  background:#fbe8c3;
  padding:30px;
  border-radius:25px;
  box-shadow:0 0 40px #fbe8c322;
}


.title {
  text-align: center;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 1px;
  color: #ff6b81;

  text-shadow:
    0 2px 0 rgba(0,0,0,0.08),
    0 4px 8px rgba(0,0,0,0.06);
}
.subtitle {
  text-align: center;
  margin-bottom: 30px;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
}

.preview {
  margin-bottom: 30px;
  text-align: center;
}

.preview img {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  display: block;
  margin: auto;
}

.preview-link {
  position: relative;
  display: inline-block;
}

.preview-overlay {
  position: absolute;
  bottom: 15px;
  right: 20px;
  background: rgba(255,111,134,0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.generators {
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.preview img {
  width: 40%;
  max-width: 700px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card {
  background: #ff6f91;
  padding: 14px 36px;
  min-height: 60px;
  line-height: 1.2;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


footer {
  padding: 20px 0;
  text-align: center;
}

.footer-inner{
display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #ffffffcc;
}

.footer-inner a {
  display: block;
  margin: 0;
  color: #ffffff;
  text-decoration: none;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
}



