@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #0f172a;
  color: #f1f5f9;
  transition: all 0.3s ease;
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: transparent;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 47px;
  font-weight: 600;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 4px;
}

.links-container {
  max-width: 600px;
  width: 100%;
  background-color: #1e293b;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.links-container:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  background-color: #111827;
}

.link-item {
  margin: 12px 0;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to right, #0f172a, #334155);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.link-button:hover {
  background: linear-gradient(to right, #334155, #0f172a);
  transform: scale(1.05);
}

.link-logo {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.linkedin {
  border-radius: 5px;
}

@media screen and (max-width: 428px) {
  .links-container {
    /* max-width: 365px; */
    max-width: 365px;
  }
}

@media screen and (max-width: 425px) {
  .links-container {
    max-width: 365px;
  }
}

@media screen and (max-width: 375px) {
  .links-container {
    max-width: 310px;
  }
}

@media screen and (max-width: 320px) {
  .links-container {
    max-width: 250px;
  }
}
