.contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: #fff;
    min-height: 100dvh;
    visibility: hidden;
    opacity: 0;
    animation: show-contact 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes show-contact {
    100% {
        visibility: visible;
        opacity: 1;
    }
}

.contact-box {
    background-color: #1f242d;
    color: white;
    background: #32363c;
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.contact .header {
    text-align: center;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
    min-height: 100px;
    border-radius: 5px;
}

.contact .header h1 {
    margin-bottom: 25px;
    padding-top: 30px;
}

.contact .main {
    text-align: center;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
    min-height: 200px;
    padding: 40px;
    border-radius: 5px;
}

.contact .main h3 {
    padding: 20px;
}

.contact .main span {
    text-decoration: underline;
    color: rgb(150, 186, 218);
}

@media (max-width: 640px) {
  .contact {
    height: auto;
    padding: 20px;
  }

  .contact-box {
    max-width: 95%;
    margin: 20px auto;
    padding: 15px;
  }

  .contact .header h1 {
    font-size: 1.5rem;
    padding-top: 15px;
  }

  .contact .main {
    padding: 20px;
    min-height: auto;
  }

  .contact .main h3 {
    font-size: 1.1rem;
    padding: 10px;
  }
}
