@import url('./variables.css');

*,
*::before,
*::after {
    box-sizing: border-box;
}

.logo-container {
    background-image: url(../assets/beach-yellow-jacket.jpg);
    min-height: 520px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 100%;
}

.logo {
    padding-top: 15px;
}

.slogan-section {
    display: flex;
    justify-content: center;
}

.slogan {
    max-width: 100%;
    height: 49px;
    width: calc(100% - 40px);
    margin: 20px;
}

.heading-sale {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 20px;
    width: calc(100% - 40px);
    background-color: white;
    color: red;
    font-size: 2rem;
    text-decoration: none;
    text-align: center;
    font-weight: 800;
    padding: 5px;
    border: 5px solid red;
}

.jacket-data-container .discounted-price {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 10px;
    color: var(--white);
    background-color: red;
    margin: 10px;
    text-decoration: none;
}

.jacket-data-container .jacket-price {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: rgb(96, 91, 91);
    background-color: white;
    text-decoration: line-through;
    margin: 0 40px;
}

.jacket-data-container p {
    font-family: "Alumni sans", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.1rem;
}

@media (min-width:480px) {
    .logo-container {
        position: relative;
        background-image: url(../assets/beach-yellow-jacket.jpg);
        min-height: 879px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        margin-top: 0px;
        width: 100%;
    }

    .logo {
        padding-top: 20px;
    }

    .slogan {
        height: auto;
        margin: 30px 50px 0 50px;
        width: calc(100% - 100px);
    }

    .heading-sale {
       margin: 20px 50px 30px 50px;
        width: calc(100% - 100px);
    }
} 

@media (min-width:1120px) {
    .heading-sale {
        padding: 10px;
    }
}

