html, body {
    margin: 0;
}

.lside {
    background-color: #e3fff9;
    grid-area: 2 / 1 / 8 / 2;
}

.rside {
    background-color: #e3fff9;
    grid-area: 2 / 6 / 8 / 7;
}

#wrapper {
    display: grid;
    grid-template-columns: minmax(0px, 1fr), 400px, repeat(2, 200px),  400px, minmax(0px, 1fr);
    grid-auto-rows: minmax(0px, auto);
}

header {
    padding: 0;
    margin: 0;
}

/*.header {
    height: 336px;
    width: 1200px;
}*/

.headerL {
    display: grid;
    height: 336px;
    background-repeat: no-repeat;
    padding: 0;
    grid-area: 1 / 1 / 2 / 2;
}

.logo {
    display: grid;
    height: 316px;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    background-position: center;
    background-repeat: no-repeat;
    grid-area: 1 / 3 / 2 / 5;
}

.headerR {
    display: grid;
    height: 336px;
    background-repeat: no-repeat;
    padding: 0;
    grid-area: 1 / 6 / 2 / 7;
}



.pictureContainer {
    display: grid;
    width: auto;
    height: 125px;
    overflow: hidden;
    position:relative;
    grid-column-start: 2;
    grid-column-end: 6;
    
}

.pictureContainer img {
    transition: transform .2s ease-in-out;
}

.pictureContainer img:hover {
    transform: translate3d(0px, -125px, 0px);
}

.first-txt {
    position: absolute;
    color: #FFFFFF;
    top: 6px;
    left: 80px;
    font-family: Verdana, monospace;
    font-size: 65px;
}

.second-txt {
    position: absolute;
    color: #FFFFFF;
    top: 6px;
    right: 80px;
    font-family: Verdana, monospace;
    font-size: 65px;
}



