@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Medium'), local('Montserrat-Medium'),
        url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    background-color: transparent;
}

.container {
    max-width: 600px;
    margin: auto;
    padding-bottom: 120px;
}

.banner {
    background-color: transparent;
    background-image: url(../img/main_banner.webp);
    background-repeat: no-repeat;
    position: relative;
    height: 360px;
    margin-bottom: 48px;
    background-size: cover;
}

.logo {
    margin: auto;
    padding-top: 11px;
}

.banner__container {
    display: flex;
    flex-direction: column;
    padding-right: 33px;
    padding-left: 33px;
    gap: 10px;
    align-items: center;
}

.banner__description {
    color: #050505;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 13px;
    max-width: 265px;
}

.bottom__logo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -35px;
    margin: auto;
}

.text {
    color: #000;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 29px;
}

.underline {
    text-decoration: underline;
}

.text__description {
    color: #000;
    text-align: start;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 29px;
    padding-left: 16px;
    padding-right: 16px;
}

.text__description a {
    color: #000;
    text-decoration: underline;
}

.links__container {
    display: flex;
    gap: 6px;
    padding-right: 10px;
    padding-left: 10px;
    max-width: 288px;
    margin: auto;
    margin-bottom: 29px;
}

.store__container {
    transition: 0.3s;
}

.store__container:hover {
    opacity: 0.8;
}

.store__container img {
    width: 117px;
    height: 36px;
}

.links__container a {
    border-radius: 10px;
    background: #F6F6F6;
    padding: 28px 12px 26px;
}

.links__container img {
    margin-bottom: 16px;
}

.link__text {
    color: #000;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
}

.link__text span {
    text-decoration: underline;
}

.button {
    color: #343434;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 3px;
    background: #FFDA18;
    padding: 11px 29px;
    display: block;
    width: fit-content;
    text-align: center;
    margin: auto;
    transition: 0.3s;
}

.button:hover {
    opacity: 0.8;
}

@media(max-width: 360px) {
    .banner {
        height: 288px;
    }
}