body {
    max-width: 1600px;
    margin: 0 auto;

    background-color: #7fb9b8;
    /* background-color: #218380; */

    color: #000;

    font-family: Arial, Helvetica, sans-serif;
    /* font-size: 1.2em; */
    line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
    text-align: left;
}

#page {
    margin: 25px;
    padding: 0;

    background-color: #FFF;

    border-radius: 30px;
    overflow: hidden;
}




header {
    padding: 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* background-image: url('/static/origami-banner.jpg'); */
    /* background-color: #D0A5C0; */
    background-color: #F6C0D0; 
}

header .avatar {
    max-width: 250px;
    max-height: 250px;
}

header .titlebox {
    margin: 10px;
    text-align: center;
}

header .titlebox * {
    background-color: #FFF;

    
    padding: 5px;
    border-radius: 5px;
}

header .titlebox h1 {
    margin: 0;
    font-size: 2.5em;
}

header .titlebox span {
    font-style: italic;
}

header .ghost {
    width: 100px;
    height: 100px;
    flex-shrink: 100;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #623B5A;
}

nav li {
    float: left;
}

nav li a {
    display: block;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    background-color: #623B5A;
    z-index: -1;
}

nav li a:hover, nav li a.active {
    background-color: #FAA916;
}



main {
    padding: 10px;
    text-align: justify;
    /* background-color: #ffe5ed; */
}


footer {
    padding: 10px;
    background-color: #623B5A;
    color: #FFF;
    text-align: center;
}

/* Style all font awesome icons */
.fa {
    padding: 15px;
    font-size: 100px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    background: #F0A5C0;
    color: #FFF;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    background-color: #D0A5C0;
  }


@media screen and (max-width: 600px) {
    nav ul li {
        float: none;
    }

    .project {
        flex-wrap: wrap;
    }

    .description, .gallery {
        flex-basis: 100% !important;
    }
}

.over-mij {
    display: flex;
}

.col {
    flex: 50%;
    padding: 50px;
}

.no-bullets, .no-bullets li {
    list-style-type:none;

}

.video {
    width: 100%;
    aspect-ratio: 16 / 9
}

.project {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    /* background-color: yellow; */
}

.description {
    /* background-color: blue; */
    flex-basis: 30%;
}

.gallery {
    /* background-color: red; */
    flex-basis: 70%;

    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.gallery div {
    width: 100%;
    height: 100%;
    background-color: #000000;
    /* background-color: #218380; */
}

.gallery img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}


.gallery .prev, .gallery .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;


}

.gallery .next {
    right: 0;
}

.gallery .next:hover, .gallery .prev:hover {
    background-color: #FFFFFF;
    color: #000000;
}


