@import url(/resources/css/variable.css);
@import url(/resources/css/common.css);
@import url(/resources/css/font.css);

.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-container::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200vmax;
  height: 200vmax;
  background: conic-gradient(#3a1c71, #d76d77, #ffaf7b, #3a1c71);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: rotateClock 20s linear infinite;
  z-index: -1;
}

@keyframes rotateClock {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
  z-index: 1;
}

header {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  z-index: 1;
}

main p {
  font-size: 2rem;
  margin: 0;
  margin-bottom: 2rem;
}

main a {
  color: var(--primaryTextColor);
  font-size: 4rem
}

.pen-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pen-note .pen-note-content {
  background: rgba(15, 32, 39, 0.3);
  border-radius: 1rem;
  padding: 1rem;
  max-width: 800px;
  margin: 0 1.25rem 1.25rem;
}

.pen-note .pen-note-content .pen-note-heading {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.pen-note .pen-note-content .pen-note-description {
  font-size: 1rem;
  font-family: 'Roboto-Light';
  text-transform: uppercase;
  line-height: 1.3;
}

footer {
  background: rgba(15, 32, 39, 0.3);
  backdrop-filter: blur(4px);
  text-align: center;
  padding: 1.5rem 1.25rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.contact {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.mail-contact {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.mail-contact a {
  color: #ffffff;
  font-size: 1.125rem;
  transition: transform 0.2s, color 0.2s;
  text-decoration: none;
}

.mail-contact a span {
  font-family: "Roboto-Light";
  margin-left: 0.5rem;
}

/* Responsive Breakpoints */
@media (max-width:992px) {
  .mail-contact {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  header {
    font-size: 2rem;
  }

  main p {
    font-size: 1.5rem;
  }

  .contact {
    font-size: 1rem;
  }

  .mail-contact {
    flex-wrap: wrap;
  }

  .mail-contact a {
    font-size: 0.875rem;
  }

  .pen-note .pen-note-content .pen-note-heading {
    font-size: 1rem;
  }

  .pen-note .pen-note-content .pen-note-description {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  header {
    font-size: 1.6rem;
    padding: 1.5rem 1rem;
  }

  main p {
    font-size: 1.25rem;
  }

  .mail-contact {
    gap: 0.5rem;
  }
}