/* Base */

* {
    box-sizing: border-box;
} 

h1, h2, h3, p {
    margin-top: 0;
}

body {
    font-family: 'Inter', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #3C2769;
    background-color: #EDEBF7;
    }
    
ul {
        list-style-type: none;
    }

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 0;
}

/* Header */
.menu {
    display: flex;
    gap: 48px;
    margin: 48px;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.nav-link {
    font-size: 24px;
    color: #697586;
}


h1 {
    font-family: 'Roboto', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #3C2769;
    text-align: center;
}

h2 {
    font-family: 'Roboto', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #3C2769;
    text-align: center;
}

h3 {
    font-family: 'Roboto', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #3C2769;
    text-align: center;
}

.header-img {
    width: 100px;
    height: 100px;
    margin: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.email {
    width: 320px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid black;
    text-align: center;
    color: #697586;
    font-style: 16px;
}

.button {
    width: 143px;
    height: 58px;
    border-radius: 64px;
    background-color: #3C2769;
    border: 2px solid black;
    color: #EDEBF7;
    font-size: 16px;
}

.header-button {
    display: none;
    
}

.advantages {
    text-align: center;
}

.video {
    display: flex;
    justify-content: center;
}

.formats-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
}

.cart {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    height: 688px;
    width: 394px;
    padding: 24px;
    border: 2px solid #3C2769;
    text-align: center;
}

.cart-text {
    height: 360px;
    width: 360px;
    padding: 20px;
}

.text-end {
    font-size: 24px;
    text-align: center;
    text-decoration: underline;
    margin: 24px;
}

.button-cart {
    width: 193px;
    height: 58px;
    border-radius: 34px;
    background-color: #3C2769;
    border: 2px solid black;
    color: #EDEBF7;
    font-size: 16px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    body {
        background-color: #f3d1e8;
    font-size: 18px;
    line-height: 1;
    }

    h1 {
    font-size: 46px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 22px;
}

    .header-img {
        width: 60px;
        height: 60px;
        margin: 0;
    }

    .header-button {
    display: block;
    width: 122px;
    height: 48px;
    border-radius: 64px;
    background-color: #3C2769;
    border: 2px solid black;
    color: #EDEBF7;
    font-size: 16px;
}

    .container {
        padding: 8px;
    }

.nav-bar {
        display: none;
    }

    .cart {
    height: 588px;
    width: 294px;
    }

    .cart-text {
    width: 100%;
}
}
