.home-button,
.about-button,
.project-button{
    text-shadow: 2px 2px black;
}

#index .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.button {
    background-color: cyan;
    border: none;
    font-size: 2vh;
    text-decoration: none;
}

#projecten .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    margin-top: 50px;
    gap: 20px;
    flex-wrap: wrap;
}

.projectcontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    margin-top: 0;
    gap: 20px;
    flex-wrap: wrap;
}

.content-list {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 80vw;
    list-style: none;
    gap: 120px;
}

.welcome-container {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: left 1.5s cubic-bezier(0.75, 0.14, 0.11, 1.04);
}

.welcome-container p {
    margin-bottom: 15px;
}

.welcome-container .button {
    margin-right: 30px;
}

.welcome-container .button:last-child {
    margin-right: 0;
}

.image-container {
    right: 20%;
    top: calc(50% - 250px);
    animation: left 1s cubic-bezier(0.75, 0.14, 0.11, 1.04);
    width: 350px;
    height: 500px;
    overflow: hidden;
    border: 2px solid #47daff;
    border-radius: 40px;
    box-shadow: -10px 5px 20px #47daff;
}

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

}

.welcome-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pindex {
    padding-bottom: 20px;
    padding-top: 10px;
}

.overmij-header {
    display: flex;
    width: 80vw;
    height: 25%;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    word-break: break-all;
    margin: 0 auto;
}

.overmij-container {
    width: 80vw;
    height: 50vh;
    border-style: solid;
    border-color: white;
    border-radius: 5px;
    border-width: 2px;
    margin: 0 auto;
    margin-top: 8rem;
}

.overmij-container p {
    font-size: 4rem;
    display: flex;
    font-weight: bold;
    justify-content: center;
    margin-top: 3vh;
}

.overmij-container img {
    height: 6rem;
    width: auto;
    transition: transform 0.3s ease;
}

.overmij-container img:hover {
    transform: scale(1.1);
}

.skills-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#skill-box {
    font-size: 30px;
    max-width: 60vw;
    margin: 0 auto;
    margin-top: 40px;
}

ion-icon {
    font-size: 50px;
    margin-top: 20%;
}

.hidden {
    display: none;
    opacity: 0;
}

#hover-line {
    position: absolute;
    height: 4px;
    background-color: white;
    transition: all 0.6s ease;
    z-index: 10;
    margin-top: 10px;
    border-radius: 5px;
}

.fall-animation {
    animation: fall 0.5s ease-out;
}

@keyframes fall {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.highlights {
    max-width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.highlights h1{
    font-size: 60px;
    margin-bottom: 30px;
    margin-top: 5vh;
}

.highlights h2{
    font-size: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    border-style: solid;
    border-color: white;
}

.language-icon{
    width: 3vw !important;
    height: auto !important;
}

.highlight-item img {
    width: 500px;
    height: auto;
    margin-right: 20px;
    cursor: pointer;
    border-radius: 8px;
}

.highlight-item p{
    font-size: 20px;
    max-width: 50vw;
    margin: 2vw;
}

.footer-bottom{
    margin-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
}

.background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

@media only screen and (max-width: 600px) {
    .welcome-container {
        font-size: 12px;
    }

    .welcome-container p {
        font-size: 20px;
    }

    .pindex {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .content-list {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 40px;
    }

    .image-container {
        border-radius: 20px;
        width: 170px;
        height: auto;
        margin-bottom: 20px;
        margin-top: 5vh;
    }

    .image-container img {
        width: 170px;
        height: auto;
    }

    body {
        margin: 0;
    }

    .overmij-header h1 {
        margin-left: 33vw;
    }

    .overmij-container p {
        font-size: 40px;
    }

    .overmij-container img{
        height: 5vh;
        width: auto;
    }

    #hover-line{
        width: 2vw;
    }

    #skill-box{
        font-size: 20px;
    }

    .skills-container{
        display: flex;
        flex-wrap: wrap;
        align-content: center;
    }

    .hightlights h1{
        font-size: 20px;
    }

    .highlight-item {
        flex-direction: column;
    }

    /* Make the image (the <a> that wraps it) appear first on mobile */
    .highlight-item > a {
        order: -1;
    }
    .highlight-item > div {
        order: 0;
    }

    .hightlights h2{
        font-size: 15px;
    }

    .highlight-item p {
        font-size: 15px;
        max-width: 310px;
    }

    .highlight-item img {
        width: 80%;
        margin: 1rem 0;
    }

    .overmij-container {
        width: 80vw;
        height: 70vh;
        border-style: solid;
        border-color: white;
        border-radius: 5px;
        border-width: 2px;
        /*margin: 0 auto;*/
        margin-top: 4rem;
    }

    .language-icon{
        width: 10vw !important;
    }

    .background-video {
        top: 5px;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

}
