/*mobile version*/

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
    background-color: #000000;
    height: 100%;
}

.personalia {

    background-image: linear-gradient(rgb(220, 141, 141),rgb(4, 0, 0));
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;    
    
 
}
.personalia-Title {
    font-size: 50px;
}
:root {
    --main-color: rgb(239, 7, 7); /* Define the main color */
}

.colorprimary {
    color: color-mix(in srgb, var(--main-color), rgb(126, 126, 126))
}
.colorsecondary {
    color: color-mix(in srgb, var(--main-color), rgb(210, 210, 210))
}
.colortertiary {
    color: color-mix(in srgb, var(--main-color), rgb(255, 255, 255))
}

.profile {
    background-color: #000000;
    width: 100%;
}

.person-logo {
    border: 4px solid black;
    border-radius: 50%;
    margin: 15px 0px 15px 0px;
    width: 20%;
    animation: glow 3s ease alternate;
}

.profile-content {
    padding: 15px;
    font-size: 20px;
}

.profile-content__category-title {
    color: rgba(39, 140, 39, 0.96);
}

.profile-content__category--hidden-mobile {
    display: none;
}

.profile-content__element {
    display: flex;
    flex-direction: column;
}

.profile-content__element--hidden-mobile {
    display: flex;
    flex-direction: column;
    display: none;
}

.profile-content__title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 2px;
    margin-top: 6px;
}

.profile-content__period {
    display: none;
}

.profile-content__institute {
    margin-top: 0px;
    font-size: 14px;
}
.tabs {
    display: flex;

}

.tab-button {
    margin: 5px;
    background-color: #ddd;
    border: solid #b0b0b0;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    outline: none;
    height: 60px;
    width: 500px;
    padding: 5px;
}

.tab-button.active {
    background-color: #ccc;
}

.tab-content {
    display: none;
    padding: 10px;
}

.tab-content.active {
    display: block;
}
.textSize{
    font-size: 25px;
    
    align-self: center;
}
.profile-content__category{
    height: 100%; display: flex; align-content: center; justify-content: center;

}
@media only screen and (min-width: 800px) {

    
    .tab-button {
        margin: 10px;
        background-color: #ddd;
        border: solid #b0b0b0;
        border-radius: 25px;
        padding: 10px 20px;
        cursor: pointer;
        outline: none;
        height: 65px;
        width: 500px;
        padding: 5px;
    }
    .textSize{
        font-size: 35px;
        
        align-self: center;
    }

    /* .person-name{
        order: -1;
    } */
    .profile {
        border: solid #000000;
        border-radius: 25px;
        background-color: #3c3c3c;
        width: auto;
        margin: 20px 150px 0px 150px;
        
        
    }
    .profile-section{
        font-size: 20px;
        padding: 15px;
        margin: 5px;
        border: solid grey;
        border-radius: 15px;
    }
    .profile-section__text{
        font-size: 40px;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }
    .profile-content__category--hidden-mobile{
        display: flex;
        flex-direction: column;
    }

    /*fix: anders als stipje zichtbaar*/
    .profile-content__category--hidden-mobile hr{
        width: 100%;
    }

    .profile-content__element--hidden-mobile {
        display: flex;
    }

    .profile-content__element-header{
        display: flex;
        
        justify-content: space-between;
    }

    .profile-content__period {
        font-size: 24px;
        /* color: #5c6166; */
        display: flex;
        margin: 5px;
    }
    .profile-content {
        font-size: 30px; /* Adjust font size for desktop devices */
        margin: 5px;
    }
    .profile-content__title {
        font-size: 25px; /* Adjust font size for desktop devices */
        margin: 5px;
    }
    .profile-content__institute {
        font-size: 24px; /* Adjust font size for desktop devices */
        margin: 5px;
    }
    .profile-content__description {
        font-size: 20px;
        margin: 5px;
    }
    

}


/*student uitwerking*/

