@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

html,
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #3A4953;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.header {
    flex-shrink: 0;
    padding-top: 47px;
}

.header, .main-content, .footer {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.header__logo {}

.main-content {
    flex-grow: 1;
    margin-top: 205px;
    padding-left: 10px;
    padding-right: 10px;
}

.site-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 920px;
    text-align: center;

}



.site-message__image {}
.site-message__text {
    margin: 0;
    margin-top: 50px;
    font-size: 64px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .site-message {
        max-width: 600px;
    }
    .site-message__text {
        font-size: 44px;
    }
}

@media screen and (max-width: 580px) {
    .site-message {
        max-width: 480px;
    }
    .site-message__text {
        font-size: 36px;
    }
}

@media screen and (max-width: 580px) {
    .site-message {
        max-width: 420px;
    }
    .site-message__text {
        font-size: 26px;
    }
}

.footer {
    margin-top: 100px;
    padding-bottom: 37px;
}
.footer__text {
    font-size: 16px;
    color: #A8BECE;
    margin: 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer__text {
        font-size: 14px;
    }
}


