* {
    margin: 0; 
    padding: 0;
}
.article-100-black {
    min-height: 100vh; 
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: white;
}
h2 {
    font-weight: bolder;
    /* color: #0B438C; */
    color: #0FB2F2;
    font-size: 3em;
    font-family: 'OregonExtraBold', sans-serif;
}
.overmij-text{
    color: white;
    margin: 100px 0;
    white-space: 5px;
}
#overmij {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    height: 100%;
    column-gap: 10px; 
}
.overmij-foto{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
} 
.overmij-foto img {
    object-fit: cover;
    width: auto;
    max-height: 500px;
    display: inline-block;
    border-radius: 8px;
}
.button-overmij {
    position: absolute;
    background-color: #0FB2F2;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* margin-top: 10px; */
}
    
.button-overmij:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
