@media screen and (max-width: 1200px) {
    div.container {
        width: 1024px;
        height: auto;
    }
}

@media screen and (max-width: 998px) {
    div.container {
        width: 998px;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    div.container {
        width: 768px;
        height: auto;
    }
}

@media screen and (max-width: 576px) and (max-heidht:300px) {
    div.container {
        width: 576px;
        height: auto;
    }
}



html,
body {
    margin: 0;
    padding: 0;
    align-items: center;
    align-content: center;
    justify-content: center;
}

html {
    font-size: 16px;
}

head {
    display: none;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;

    flex-basis: 33%;
    justify-content: center;

}

img {
    width: 200px;
    max-width: 100%;
    min-width: 100px;
    height: auto;
    max-height: 90vh;
    object-fit: scale-down;
    flex-basis: 250px;
    flex-shrink: 3;
}

.four img {
    width: 350px;
    max-width: 100%;
    min-width: 100px;
    height: auto;
    max-height: 90vh;
    object-fit: scale-down;
    flex-basis: 350px;
    flex-shrink: 3;
}

.item1 {
    width: 33.3%;
    height: 90vh;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 0 1 auto;


    float: left;

    box-sizing: border-box;
}

.item2 {
    width: 33.3%;
    height: 90vh;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 0 1 auto;


    float: left;

    box-sizing: border-box;
}

.item3 {
    width: 33.3%;
    height: 90vh;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 1 1 auto;


    float: left;

    box-sizing: border-box;
}

.five {
    margin-bottom: -20px;
}