html {
    font-family: "SF Pro Text", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    outline: unset;
    border: unset;
    box-sizing: border-box;
}

img {
    max-height: 100%;
    object-fit: cover;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    position: relative;
    z-index: 10;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.main__download {
    flex-grow: 1;
    padding: 10px;
}

.main__info {
    width: 100vw;
    height: 70vh;
    max-height: 600px;
    overflow-y: hidden;
    box-shadow: 0px -10px 40px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.main__info-image {
    height: 100%;
}

.footer {
    margin-top: auto;
    padding: 5px 10px;
}

.logo {
    display: flex;
    color: inherit;
    text-decoration: inherit;
}

.logo__image {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.logo__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    font-size: 14px;
    color: rgb(136, 136, 136);
}