
html{
    height: 100%;
    width: 100%;
    background: linear-gradient(110deg, rgba(0,0,0,1) 0%, rgba(64,0,0,1) 40%, rgba(64,0,0,1) 60%, rgba(0,0,0,1) 100%);
}

body{
    height: 100%;
    background-image: url(Berry.svg);
    background-size: 10%;
    display: flex;
    justify-content: center;
    margin: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(244, 232, 232);
    text-align: center;
}

main{
    scrollbar-width: none;
    backdrop-filter: blur(2px);
    width: 75%;
    overflow: scroll;
    padding-bottom: 2%;
}

main::-webkit-scrollbar {
    display: none;
  }

#passwordInput{
    width: 75%;
    height: 2em;
    border-radius: 10px;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 2em;
    text-align: center;
    margin: auto;
}

@keyframes changeColor {
    from {
        color: #FFFFFF;
        transform: scale(1);
    }
    to {
        color: #FFDDDD;
        transform: scale(1.05);
    }
}

h1{
    font-size: clamp(10vw, 6em, 2em);
    margin-bottom: 0px;
    animation: changeColor 5s infinite alternate;
}

header{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

header a{
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: transform .2s; /* Animation */
    padding: 1em;
}

header a:hover{
    transform: scale(1.2);
}

a{
    color: rgb(223, 105, 105);
    font-weight: bold;
}

ul{
    list-style-type:none;
}

#Opdrachten{
    padding:1%;
    margin:2%;
    background-color: rgba(165, 42, 42, 0.215);
    box-shadow: 0px 0px 10px 10px rgba(165, 42, 42, 0.215);
    display: grid;
    grid-template-columns: 5fr 1fr;
}

.persoon img{
	border-radius: 50%;
    width: 4rem;
}
.persoon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Mensen{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.afgevallen img{
    filter: grayscale(100%);
}
