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

body {
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #111;
}

.card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.info h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info p {
  font-size: 16px;
  margin-bottom: 8px;
}

.info a {
  font-size: 16px;
  color: #0070f3;
  text-decoration: none;
  font-weight: 500;
}

.socials {
  margin-top: 24px;
}

.socials a {
  margin: 0 10px;
  font-size: 22px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.socials a:hover {
  color: #0070f3;
  transform: scale(1.1);
}
