main{
    width: 100%;
    margin-top: 150px;
    padding: 0 2em;
}

.horizontal-divider{
    width: 100%;
    height: 1px;
    background: #ffffff81;
    margin: 15px 0;
}

.main-heading{
    font-family: "Monoton", Sans-Serif;
    text-transform: uppercase;
    font-size: 4em;
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

.main-info{
    color: var(--white);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.basket{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title{
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: var(--white);
    margin: 20px 0;
}

.title h2{
    font-family: "Monoton", Sans-Serif;
    text-transform: uppercase;
    font-size: 2em;
    color: var(--white);
    font-weight: 400;
}

.proceed-to-checkout{
    background: var(--white);
    color: var(--secondary-red);
    font-size: 1em;
    text-decoration: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.proceed-to-checkout:hover{
    background: var(--secondary-red);
    color: var(--white);
}