body,
html {
    background-color: #fff;
    color: #000;
    font-family: 'Vidaloka', serif;
    font-size: 14px;
    height: 100%;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

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

a {
    color: #000;
    text-decoration: none;
}

h1,
h2 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    text-transform: uppercase;
}

.fixed {
    height: 100%;
    margin: auto;
    position: relative;
    width: 100%;
}

header {
    margin: auto;
    padding: 80px 100px;
    width: 100%;
}

header img {
    display: block;
    height: auto;
    margin: 0;
    max-width: 150px;
    width: 100%;
}

main {
    align-items: flex-end;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    left: 0;
    padding: 80px 100px;
    position: absolute;
    right: 0;
    width: 100%;
}

main section:nth-child(1) {
    width: 90%;
}

main section:nth-child(2) {
    width: 10%;
}

@media (max-width: 768px) {
    main {
        flex-direction: column-reverse;
    }

    main section:nth-child(1),
    main section:nth-child(2) {
        width: 100%;
    }
}