html {
    font-size: 24px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

*,*:before,*:after {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: Arial;
    background-color: lightgrey;
}

.mlr-20 {
    margin-left: 20px;
    margin-right: 20px;
}

h1,h2{
    text-transform: uppercase;
}


.container {
    display: block;
}

h1 {
    color: white;
    width: 100%;
    text-align: center;
    background-color: rgb(48, 48, 48);
    padding: 40px 0;
    margin-top: 0;
}

h2 {
    background-color: rgb(48, 48, 48);
    color: white;
    text-align: center;
    margin-top: 80px;
    padding: 25px 0;
}

h3.date{
    text-align: center;
    font-weight: bold;
    margin-top: 60px;
    font-size: 28px;
    margin-bottom: 20px;
}

.personal-data-pseudo-table {
    display: flex;
    justify-content: space-between;
}

.personal-data-pseudo-table > p{
    margin: 5px 10px 5px 10px;
}


.experience {
    height: auto;
}


.experience p {
    text-align: center;
}



.address {
    margin-top: 30px;
}

.name {
    font-size: 60px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
}


.right-align {
    text-align: right;
    width: 49%;
    display: inline-block;
    margin: 0px;
}

.left-align {
    text-align: left;
    width: 49%;
    display: inline-block;
    margin: 0px;
}

.picture {
    width: 400px;
    margin-left: 160px;
    margin-top: -110px;
    max-width: 100%;
}

.application-picture {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}


@media (min-width: 768px) {
    h1 {
        padding-left: 40px;
        text-align: unset;
    }
}



@media (min-width: 1200px) {
    .container {
        max-width: min(90%, 1300px);
        margin: 0 auto;
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        grid-template-rows: min-content min-content; 
        gap: 0 150px; 
        grid-template-areas: 
          "upperLeft upperRight"
          "lowerLeft lowerRight";     
        }


        .basic-info{
            grid-area: upperRight;
        }

        .container-left {
            grid-column: 1;
            grid-row: 1 / 3;
        }

        .container-right {
            grid-area: lowerRight;
        }

        .experience {
            width: auto;
        }
        .application-picture{
            max-width: 300px;
            transform: scale(1.35) translateY(-80px); 
        }
}
