* {
    padding: 0;
    margin: 0;
    outline: none;
}

body,
html {
    background: #efefef;
    min-height: 100%;
    width: 100%;
    font-family: helvetica;
}

.title__input {
    width: 100%;
    border: none;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #fff;
    transition: .3s background;
}

.title__input:hover,
.title__input:focus {
    background: #efefef;
}

.controls {
    position: fixed;
    left: 50%;
    top: 30px;
    margin-left: 350px;
}

.export-button {
    background: red;
    padding: 5px 10px;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s background;
}

.export-button:hover {
    background: #cc0909;
}

.page {
    width: 600px;
    min-height: 100%;
    margin: 30px auto;
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 15px;
    box-shadow: #d0cbcb 0px 1px 2px;
}

.block {
    width: calc(50% - 15px);
    float: left;
    margin-bottom: 15px;
}

.block:nth-child(odd) {
    margin-right: 15px;
}

.block:nth-child(even) {
    margin-left: 15px;
}

.block__input {
    font-weight: normal;
    font-size: 14px;
    border: none;
    padding: 0;
    line-height: 14px;
    margin: 0 0 5px 0;
    width: 100%;
    background: #fff;
    transition: .3s background;
}

.block__input:hover,
.block__input:focus {
    background: #efefef;
}

.block__image-container {
    background: #dedede;
    background-position: cover;
    width: 100%;
    height: 145px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: .3s opacity;
}

.block__image-container:hover {
    opacity: .5;
}


.block__image {
    font-size: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
}

.header__logo {
    max-height: 150px;
    cursor: pointer;
    transition: .3s opacity;
}

.header__logo:hover {
    opacity: .8;
}

.footer {
    width: 100%;
    text-align: right;
}

.footer__logo {
    width: 150px;
}

.copyright {
    font-size: 11px;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    color: #b7b7b7;
}

@media print {
    .controls {
        display: none;
    }
    .page {
        margin: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        box-shadow: inherit;
    }
    .title__input {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .copyright {
        display: none;
    }
}