* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #fbf3e6, #fbf3e6);
  color: #fbf3e6;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.container {
  margin-top: 10vh;
  animation: fadeIn 1.5s ease;
}

.logo {
  width: 120px;
}

.lable {
  width: 300px;
  margin-bottom: 30px;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
}

.subtitle {
  font-size: 1.2em;
  color: #555;
}

footer {
  margin-bottom: 40px;
}

.socials a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s;
}

.socials img {
  width: 70px;
  height: 70px;
  opacity: 0.8;
  display: inline-block;
}

.socials a:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


.quote {
  font-style: italic;
  font-size: 1.5em;
  max-width: 600px;
  margin: 0 auto 1em auto;
  color: #444;
  padding: 0 20px;
}

.subtitle {
  font-size: 1.1em;
  color: #666;
}

