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

* {
    padding: 0;
    margin: 0;

    transition: all 0.3s ease-in-out;
}

body {
    font-family: "Jersey 10", sans-serif;
    background-color: #060c21;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing 0.2rem;
    font-weight: 600;
}

.logo {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    margin-top: 8%;
}

.logoContainer {
    margin: 1rem 0;
    position: relative;
    height: 225px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    flex-direction: column;
}

.link {
    height: 2.75rem;
    width: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;

    margin: 0.5rem 0;
    border-radius: 15px;
}

.greetings {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.about {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: white;
}

.link span {
    width: 80%;
    text-align: center;
}

.link img {
    height: 2rem;
    aspect-ratio: 1;
}

.linkIcon {
    height: 2rem !important;
    aspect-ratio: 1;
}

.link:nth-child(1) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:nth-child(2) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:nth-child(3) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:nth-child(4) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:nth-child(5) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:nth-child(6) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:nth-child(7) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:nth-child(8) {
    background: linear-gradient(90deg,
            rgba(241, 241, 241, 0.1) 30%,
            rgba(113, 113, 113, 0.3) 100%),
        #ffffff;
    color: rgb(0, 0, 0);
}

.link:hover {
    filter: drop-shadow(0px 5px 1px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
}

.link>* {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.1s;
}

.link:hover>* {
    transform: scale(1.1);
    filter: drop-shadow(0px 5px 1px rgba(0, 0, 0, 0.2));
}

@media (max-width: 600px) {
    body {
        background-size: 100%;
    }

    .logo img {
        width: 200px;
    }

    .link span {
        width: 70%;
        text-align: center;
    }

    .link {
        width: 95vw;
    }

    .link:hover {
        transform: scale(1.01);
    }
}

.footer {
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerBtn,
.closeBtn,
.iconBtn {
  cursor: pointer;
  border: none;
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
}

.footerBtn,
.closeBtn {
  background: white;
  color: #060c21;
  font-weight: 700;
}

.iconBtn {
  background: transparent;
  color: #64748b;
  font-size: 1.4rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hidden {
  display: none;
}

.modalOverlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
}

.modalContent {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.25s ease;
}

.modalBody {
  padding: 2rem;
  overflow-y: auto;
  max-height: 90vh;
}

.modalHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.modalHeader h3 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.modalSubline {
  color: #2563eb;
  font-weight: 600;
}

.modalSections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #475569;
}

.modalSections h4 {
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.modalSections a {
  color: inherit;
  text-decoration: none;
}

.modalSections a:hover {
  color: #2563eb;
}

.modalFooter {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.modalFooter .closeBtn {
  width: 100%;
}

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

body.modal-open {
  font-family: "Roboto", sans-serif;  
  overflow: hidden;
}
