/*mobile version*/

body {
font-family: Arial, sans-serif;
background-color: #2C343D;
margin: 0;
}
nav {
background: #1A1F23;
color: rgb(255, 255, 255);
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}
nav .mainMenu {
    display: flex;
    list-style: none;
    margin: 0;
}

nav .mainMenu li {
    display: flex;
    align-items: center;
}
nav .mainMenu li a {
display: inline-block;
padding-right: 15px;
padding-left: 15px;
text-decoration: none;
text-transform: uppercase;
color: rgb(255, 255, 255);
font-size: 18px;
transition: 0.2s ease;
display: flex;
align-self: stretch;
align-items: center;
}
nav .mainMenu li a:hover {
background: #44525E;
}
nav .openMenu {
font-size: 2rem;
margin: 20px;
display: none;
cursor: pointer;
}
nav .mainMenu .closeMenu,
.icons i {
font-size: 1.5rem;
display: none;
cursor: pointer;
}

nav .logo {
cursor: pointer;
text-transform: uppercase;
}

.dropdown {
float: left;
overflow: hidden;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2C343D;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
background-color: #ddd;
}

.dropdown:hover .dropdown-content {
display: block;
}

.page {
    display: flex;
    flex-direction: row;
    font-family: Arial;
    justify-content: center;
}

.personalia {
    background-color: #232A30;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

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

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

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

.profile-content__category-title {
    color: #89A1BA;
}

.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 {
    color: #89A1BA;
    margin-top: 0px;
    font-size: 14px;
}

.profile-content__list {
    color: #89A1BA;
    font-size: 14px;
    padding-inline-start: 0;
    list-style-position: inside;
}

.header {
    text-align: center;
    color: #89A1BA;
}

.contact {
    margin: 10;
    color: white;
    font-size: 20px;
    max-width: 500px;
    width: 80%;
}

.register {
    margin: 10;
    color: white;
    font-size: 20px;
    max-width: 500px;
    width: 80%;
}

.form-contactpagina__inputelement {
    display: flex;
    flex-direction: row;
    margin: 15px 0px 15px 0px;
    justify-content: space-between;
}

.form-contactpagina input {
    color: white;
    background-color: transparent;
    padding: 10px;
    font-size: 20px;
    border: 4px solid #44525E;
    border-radius: 10px;
}

.form-contactpagina__submit {
    display: flex;
    justify-content: center;
}

.form-contactpagina__submit input {
    width: 40%;
}

.form-contactpagina__inputelement .form-contactpagina__namebox {
    width: 48%;
}

.form-contactpagina__namebox {
    display: flex;
    flex-direction: row;
}

.form-contactpagina__submit input {
    width: 40%;
    background-color: #44525E;
}

.register-form input {
    color: white;
    background-color: transparent;
    padding: 10px;
    font-size: 20px;
    border: 4px solid #44525E;
    border-radius: 10px;
}

.register-form-inputelement {
    display: flex;
    flex-direction: row;
    margin: 15px 0px 15px 0px;
    justify-content: space-between;
}

.register-form-submit {
    display: flex;
    justify-content: center;
}

.register-form-submit input {
    width: 40%;
    background-color: #44525E;
}

.register-error {
    font-size: 15px;
    background-color: #232A30;
    padding: 10px;
    border-radius: 10px;
    border: 3px solid darkred;
}

.fx-col{
    display: flex;
    flex-direction: column;
}

.fx-row{
    display: flex;
    flex-direction: row;
}

.jc-center {
    justify-content: center;
}



.game-page {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.game-searching {
    font-size: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
}

.game-start {
    font-size: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.game-start button {
    color: white;
    background-color: #44525E;
    padding: 10px;
    font-size: 20px;
    border: 4px solid transparent;
    border-radius: 10px;
}

.game-searching button {
    color: white;
    background-color: #44525E;
    padding: 10px;
    font-size: 20px;
    border: 4px solid transparent;
    border-radius: 10px;
}

.player2board {
    display: flex;
    flex-direction: column;
}

.userList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding: 0px;
}

.userHeader {
    display: flex;
    flex-direction: row;
    font-size: 20px;
    color: white;
    justify-content: space-between;
    width: 400px;
}

@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}

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

    .person-name{
        order: -1;
    }

    .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: 12px;
        color: #ffffff;
        display: flex;
    }
}

@media (max-width: 800px) {

    .player2board {
        display: none;
    }

    .userHeader {
        width: 90vw;
    }

    .page {
        flex-direction: column;
    }

    nav .mainMenu {
        height: 100vh;
        position: fixed;
        top: 0px;
        right: 0px;
        left: 0px;
        z-index: 10;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgb(0, 0, 0);
        transition: top 1s ease 0s;
        display: none;
    }
    nav .mainMenu .closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    nav .openMenu {
        display: block;
    }
    nav .mainMenu li a:hover {
        background: none;
        color: rgb(255, 123, 0);
    }
    .icons i {
        display: inline-block;
        padding: 12px;
    }
}
