body {
    font-family: var(--eb-garamond-main);
    background-color: #001F3F;
    color: white;
}

.header{
    color: #DBD3D3;
    a, span {
        color: #DBD3D3;
    }
    h2 {
        background-color: #6A9AB0;
        color: black;
        display: flex;
        justify-content: center;
        font-size: 20px;
        padding: 5px;
    }
}

footer {
    color: #DBD3D3;
}

.eb-garamond-main {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.name-brand {
    font-family: var(--eb-garamond-main);
}

.nav-item {
    font-family: var(--eb-garamond-main);
    font-size: 16px;
    background: transparent;
    border: none;
    padding: 0.5em;
    color: #ffedd3;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
}

.nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #EC8305;
    transition: 0.5s ease;
}
  
.nav-item:hover {
    transition-delay: 0.5s;
    a {
        color: #EC8305;
    }
}
  
.nav-item:hover::before {
    width: 100%;
}

.heroContact {
    background-image: url('../assets/images/julian-hochgesang-Dkn8-zPIbwo-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: 2000px 600px;
    height: 50vh;

    h1 {
        position: relative;
        top: 43%;
        left: 41%;
        color: black;
        font-size: 3rem;
        background-color: #DBD3D3;
        width: fit-content;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }
}

.contact {
    background-color: #DBD3D3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DBD3D3;
    height: 50vh;

    h2 {
        display: flex;
        justify-content: center;
        border-right: solid #DBD3D3 3px;
    }
}

.column {
    background-color: #001F3F;
    padding: 30px;
    font-size: 1.2rem;
}

@media (max-width: 576px) {
  .heroContact h1 {
    font-size: 2.2rem;
    text-align: center;
    top: 25%;
    left: 15%;
  }

  .contact h2 {
    font-size: 2rem;
    text-align: center;
  }

  .container-fluid.contact .row {
    flex-direction: column;
    align-items: center;
  }

  .list-unstyled {
    font-size: 1rem;
    text-align: center;
  }

  .list-unstyled li {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .heroContact h1 {
    font-size: 3rem;
    text-align: center;
  }

  .contact h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .container-fluid.contact {
    height: 80vh;
  }

  .container-fluid.contact .row {
    flex-direction: column;
    align-items: center;
  }

  .list-unstyled {
    font-size: 1.2rem;
    text-align: center;
  }

  .list-unstyled li {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .heroContact h1 {
    font-size: 4rem;
    text-align: left;
  }

  .contact h2 {
    font-size: 3rem;
    text-align: left;
  }

  .container-fluid.contact .row {
    display: flex;
    justify-content: space-between;
  }

  .list-unstyled {
    font-size: 1.1rem;
  }

  .list-unstyled li {
    margin-bottom: 15px;
  }
}

.emailForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;

  h2 {
    font-size: 3rem;
  }

  form {
    width: 50vw;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #DBD3D3;
    color: black;
  }

  button {
    margin-top: 10px;
    background-color: green;
  }
}

@media (max-width: 576px) {
  .emailForm h2 {
    font-size: 1.5rem;
  }

  .emailForm form {
    width: 70vw;
    padding: 40px;
  }
}