body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #333;
}

.card {
  width: 350px;
  background-color: #000;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, top 0.3s ease;
}

.card h1 {
	color: #FFF;
	margin: 10px 0;
}

.card:hover {
  transform: translateY(-10px);
  top: -5px;
  animation: baloonEffect 0.3s ease-in-out infinite alternate;
}

@keyframes baloonEffect {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

.logo {
  width: 250px;
  height: 250px;
  border-radius: 20%;
  margin-bottom: 20px;
}

.slogan {
  color: #A7A7A7;
}

.buttons {
  margin-bottom: 20px;
}

.button {
  display: block;
  margin-bottom: 10px;
  padding: 10px 20px;
  text-decoration: none;
  color: #FF7550;
  background-color: #FFF;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #FF7550;
  color: #FFF;
}

.card .button i {
  margin-right: 5px; 
  font-size: 20px; 
  color: #FF7550; 
}

.card .button i:hover {
  color: #FFF;
}

.social-icons {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  margin: 0 5px;
  color: #888;
  font-size: 24px;
  text-decoration: none;
}

.social-icon:hover {
  color: #FFF;
}
