body {
    background-image: url(../img/img24.jpg);
    background-size: cover;
    height: 100vh;
}

:root {
    --colorBlue: #101B30;
    --colorWhite: #fff;
    --gradient: linear-gradient(108.27deg, #ffa836 25.18%, #fec82e 62.41%);
    --bold: Montserrat-Bold;
    --regular: Montserrat-Regular;
    --bebas: BebasNeue;
}

.buy {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.buy__container {
    display: flex;
    justify-content: space-between;
}

.buy__container > div {
    width: calc(50% - 50px);
    height: 100%;
    background-color: var(--colorBlue);
    border-radius: 5px;
    padding: 20px;
}

.buy__container > div > h3 {
    font-family: var(--bold);
    color: var(--colorWhite);
    font-size: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.buy__list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buy__list > div {
    display: flex;
    gap: 25px;
}

.list2 > div:nth-child(n+2) {
    margin: 0 0 0 49px;
    opacity: .3;
}

.list2 {gap: 14.668px;}

.buy__list > div > li {
    font-family: var(--regular);
    color: var(--colorWhite);
    font-size: 14px;
}

.buy__list > div > svg {fill: var(--colorWhite);}

.buy__container > div > h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.buy__buttons {
    background-color: #2e334d;
    width: 100%;
    height: 80px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.buy__buttons > span {
    font-family: var(--bold);
    color: var(--colorWhite);
    font-size: 15px;
}

.buy__buttons > div > a > svg {
    width: 30px;
    height: 30px;
    fill: var(--colorWhite);
    transition: all .15s ease-in-out;
    border-radius: 2px;
}

.buy__buttons > div > a > svg:hover,
.buy__buttons > div > a > svg:focus {
    background-color: var(--colorWhite);
    fill: #2e334d;
}

.buy__buttons > div {
    display: flex;
    gap: 15px;
}

@media (max-width: 800px) {
    .buy__container {
        flex-direction: column;
        gap: 15px;
    }

    .buy__container > div {
        width: 100%;
    }

    .buy {height: auto;}
}