/* fontawesome icons */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #ff9a8b, #fad0c4);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
}

/* Main Container */
.main {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
  animation: slideIn 0.8s ease-in-out;
}

#heading {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #ff6f61;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Links Styling */
.sc-links {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  background: #ff6f61;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background 0.3s ease-in-out;
}

.sc-links i {
  font-size: 1.2rem;
}

.sc-links a {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
}

.sc-links:hover {
  background: #fc9286;
  transform: translateY(-3px);
}

.sc-links:active {
  background: #d65a50;
  transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  #heading {
    font-size: 1.8rem;
  }

  .sc-links {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }

  .sc-links i {
    font-size: 1rem;
  }
}

/* Slide-in Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
