body{
    background-color: #ded8d3;
    margin: 0;
    padding: 0;
    overflow: overlay;
}

::-webkit-scrollbar {
    width: 12px;
}
  
::-webkit-scrollbar-track {
    background-color: #bfa48d;
}
   
::-webkit-scrollbar-thumb {
    background: #8f7a69; 
    border-radius: 10px;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #64574c; 
}

.HeaderContainer{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.HeaderContainer h1 {
    background-color: #b8b0a9;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-family: Nexa Heavy;
    font-size: 35px;
    width: 50%;
    padding: 10px 25px;
    border-radius: 10px;

}

.PeriodeBox{
    display: grid;
    grid-template-columns: 50% 50%; 
    align-items: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    margin-top: 50px;
}

.Periode1{
    background-color: #94a696;
}

.Periode2{
    background-color: #70a7cf;
}

.Periode3{
    background-color: #967d68;
}

.Periode4{
    background-color: #c66767;
}

.TextContent{
    padding-left: 40px;
    font-size: 20px;
}

.TextContent h2{
    font-family: Nexa Heavy;
    padding-top: 10px;
}

.TextContent p{
    font-family: Nexa ExtraLight;
}

.TextContent li{
    font-family: Nexa ExtraLight;
}

.TextContent li::marker{
    color: #303030;
}

.Periode1 a{
    font-family: Nexa Heavy;
    text-decoration: none;
    color: #425444;
    font-size: 18px;
    font-weight: 1000;
}

.Periode1 a:hover{
    color: #243026;
}

.Periode2 a{
    font-family: Nexa Heavy;
    text-decoration: none;
    color: #045a89;
    font-size: 18px;
    font-weight: 1000;
}

.Periode2 a:hover{
    color: #07344d;
}

.Periode3 a{
    font-family: Nexa Heavy;
    text-decoration: none;
    color: #483729;
    font-size: 18px;
    font-weight: 1000;
}

.Periode3 a:hover{
    color: #35271c;
}

.PeriodeBox img{
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
    margin: 25px;
    width: 80%;
    border-radius: 10px;
}

.ImageHover:hover{
    box-shadow: 0 0 50px rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 970px){

    .HeaderContainer{
        padding-top: 25px;
    }
    
    .PeriodeBox{
        align-content: center;
        grid-template-columns: 100%; 

    }

    .TextContent{
        padding-right: 40px;
    }

    .PeriodeBox img{
        margin-left: 10%;
    }

    .TextContent h2{
        font-size: 25px;
    }

    /* .TextContent p{
    
    } */

    .TextContent li{
        font-size: 15px;
    }

    .TextContent a{
        font-size: 15px;
    }
}

@media only screen and (max-width: 425px){
    .TextContent p {
        font-size: 18px;
    }
}
