html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
}

body {
  background: #000;
  overflow-y: auto;
  position: relative;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card {
  background-color: #fff;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  text-align: center;
  margin-bottom: 2rem;
}

.card h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.info {
  margin: 1rem 0 2rem;
  padding: 1.5rem;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  border-radius: 12px;
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info img {
  width: 90px;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  border: 2px solid #000;
}

.info strong {
  font-size: 1.5rem; 
}

.info br + div {
  font-size: 1.2rem;
}

.social-icons {
  margin-top: 0.5rem;
}

.social-icons a {
  margin: 0 0.4rem;
  color: #000;
  font-size: 1.2rem;
}

.section-box-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-box {
  background-color: #fff;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  max-width: 500px;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-in-out;
}

@media(max-width: 480px) {
  .info {
    flex-direction: column;
    text-align: center;
    max-width: 300px;        
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
  }
  .card {
    padding: 1.2rem;
    max-width: 90%;
    box-shadow: 4px 4px 0 #000;
  }

  .card h1 {
    font-size: 1.6rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  .section-box {
  max-width: 350px;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.links, .contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.links a, .contact a {
  width: 100%;
  max-width: 90%;
  background-color: #fff;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  margin: 0.5rem 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  transition: transform 0.2s;
  text-align: center;
}

.links a:hover, .contact a:hover {
  transform: scale(1.05);
  background-color: #d1d1d1;
}

#clock {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 3px 3px 0 #000;
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-box-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
  }
  .section-box {
    margin-bottom: 0;
  }
}

