:root {
  --bg-color: #000B00;
  --accent-color: #111B11;
  --text-color: #f7f7f7;
  --brand-color: #5aa618;
  --brand-accent: #005a00;
  --highlight-color: #7fe02a;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    width: 100%;
  }

  @font-face {
    font-family: irishFont;
    src: url(irish_font.ttf);
}
  
  main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    flex: 1;
  }

  .contact-section {
    position: relative;
    width: 100vw;
    min-height: 500px;
    height: 100vh;
    margin-top: 10vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .contact-form-container {
    background-color: rgba(0, 0.04, 0, .3);
    padding: 2rem;
    border-radius: 1rem;
    min-width: 200px;
    color: var(--text-color);
    text-align: center;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60vw;
  }
  
  .contact-form-container h2 {
    font-size: 3.5rem;
    margin-top: 0px;
    margin-bottom: 1rem;
    font-family: irishFont;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 90%;
    padding: 0.75rem;
    margin: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    resize: none;
  }
  
  .contact-form button {
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    background-color: var(--brand-accent);
    color: var(--text-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: var(--brand-color);
    transform: scale(1.15);
  }

  a {
    color: var(--highlight-color);
  }

  a:visited {
    color: #bbbbbb;
  }

  @media only screen and (max-width: 768px) {
    .contact-section {
      min-height: 300px;
      height: 100vh;
      margin-top: 30px;
    }
  }