/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFD100;
  font-family: 'Poppins', sans-serif;
  color: #333;
  text-align: center;
}

/* Container */
.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Logo & Heading */
.logo img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.logo p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.button {
  background-color: #4A4A4A;
  color: #FFD100;
  padding: 15px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.button img {
  width: 20px;
  height: 20px;
  filter: invert(100%);
}

.button:hover {
  background-color: #333;
}

/* Footer Styling */
.footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer a {
  color: #333;
  text-decoration: underline;
}
