.nav-link {
    color:rgb(0, 0, 0);
}

.nav {
  align-items: center;
  margin-top: 2%;
  margin-bottom: 2%;
  font-family: "Bree Serif", serif;
}

.aboutcontainer {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    height:750px;
}

.aboutimage {
    display:flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 350px;
    padding-right: 5%;
}

.aboutwords {
    display:flex;
    flex-direction: column;
    max-width: 500px;
    padding: 5%;
}

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

.centeremail a {
    text-decoration: none;
    color: black;
    font-style: italic;
    font-weight: 600;
}

.centeremail a:hover {
    font-style: normal;
}

  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .aboutcontainer {
      flex-direction: column;
      height:auto;

    }
    .aboutwords {
        width:70vw;
        padding-top: 5%;
        margin-left: 3%;
    }
    .aboutimage {
      margin-top: 5%;
      justify-content: center;
      padding-right: 0%;
    }
  }

.footercontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    text-decoration: overline;
    font-style: italic;
  }

  .headercontainer{
    display: flex;
    height: 90px;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    align-content: center;
    margin-left: 3%;
    margin-top: 2%;
    margin-bottom: 2%;
    transition: opacity 0.3s; /* Add a smooth transition effect */
  }
  
  .logo:hover {
    opacity: 0.01; /* Change the image's opacity when hovered */
  }
  
    /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 600px) {
      .headercontainer {
        height: 160px;
        flex-direction: column;
      }
  
      .logo {
        margin-top: 5%;
      }

      .text-overlay {
        margin-top: 150px;
      }

      .contactcontainer {
        height: 200px;
      }
    }

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  padding: 10px;
  text-align: center;
  font-family: "Bree Serif", serif;
}

.text-overlay a {
  text-decoration: none;
  color: white;
  font-style: italic;
  font-size: 18px;
}

.text-overlay a:hover {
  font-style: normal;
}

.contactcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height:750px;
  overflow: hidden;
}


.contactimage {
  display: flex;
  justify-content: center;
  width: 100%;
}