
* {
    margin: 0;
    padding: 0;
}

.wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.header {
    height: 100px;
    width: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    margin: 0;
}

.header__logo {
    width: 80px;
    margin-left: 15px;
}

.header__logo-image {
    max-width: 60px;
}

.content {
    background: #FFF;
    height: 100%;
    position: relative;
}

.content__text {
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    top: 150px;
    position: relative;
}

.content__text-title {
    font-size: 30px;
    font-weight: 700;
}

.content__text-description {
    font-size: 32px;
    margin: 15px 0;
}

.content__text > img {
    width: 100px;
    margin: auto;
}

.content__text > a {
    color: #3E6EFF;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
}

.content__text > a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 285px) and (max-width: 1000px) {
    .content__text {
        top: 10px;
    }
}
