body{
    background-color: #D8E1E9;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.navbar{
    background-color: #7392B7;
    padding: 5px;
    margin-left: 70px;
    border-radius: 40px;
    color: aliceblue;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    width: 1260px;
}
.container {
    display: flex;
    justify-content: space-between; /* Zet de kolommen uit elkaar */
    align-items: flex-start; /* Begin met uitlijnen aan de bovenkant */
    margin-right: 100px;
}

.column {
  padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-container {
    position: relative;
    margin: 10px;
    margin-left: 70px;
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
    opacity: 50%;
    background-color: #759EB8;
}

.overlay::after {
    content: attr(data-title);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C5D5EA;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-container:hover .overlay::after {
    opacity: 1;
}

.about-me {
    color: black;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
}


.text-container p {
    font-size: 18px;
    color: #333;
    background-color: white;
    padding:30px;
    border-radius: 10px;
    height:900px;
}

a {
    color: #4d6476; /* zwarte tekstkleur */
    text-decoration: none; /* verwijder standaard onderstreping */
    transition: color 0.3s; /* soepele overgang van kleurverandering */
  }
  
  /* Stijl van links wanneer de gebruiker erover zweeft */
  a:hover {
    text-decoration: underline;
    color: #008cff; /* verander tekstkleur naar rood wanneer erover wordt gezweefd */
  }

  

  
 

  
  

  