header{
    background: #262a37;
    height: 100px;
}
footer{
    height: 420px;
}
.main{
    background: #262a37;
    text-align: center;
    color: white;
    min-height: 800px;
    flex: 1;
}
.main section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.main section img {
    max-width: 60%;
}

.main section .title {
    font-size: 32px;
    margin-bottom: 20px;
}
.main .content {
    display: inline-block;
    vertical-align: top;
    margin-top: 120px;
    margin-left: 100px;
    text-align: left;
}
.content p {
    margin-bottom: 12px;
}
.descript{
    margin-bottom: 40px;
}
@media only screen and (max-width: 1200px) {
    header{
        height: 100px;
    }
    body,html{
        height: 100%;
    }
    .container{
        display: flex;
        flex-direction: column;
        background: #262a37!important;
        height: 100%;
    }
    .main{
        flex: 1;
    }
}
@media only screen and (max-width: 300px) {
    footer{
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 417px;
    }
}


