.projecten_container {
    height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.project_container {
    height: 20vh;
    width: 80vw;
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.project_informatie_container {
    display: flex;
    flex-direction: column;
    color: white;
}

.project_informatie_container h1 {
    font-size: 2.5em;
    font-weight: 500;
}

.projecten_uitleg_container {
    color: rgba(255, 255, 255, 0.75);
}

img {
    height: 15vh;
    width: 20vw;
    object-fit: contain;
}

body {
    background: linear-gradient(135deg, #0d6efd, black);
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.skills_container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.skills_container > p {
    background: rgba(13, 110, 253, 0.4);
    border: 1px solid rgba(13, 110, 253, 0.7);
    padding: 5px 10px;
    margin: 5px;
    color: white;
    border-radius: 4px;
}