* {
    padding: 0;
    margin: 0;
}

/* Header */
header {
    background: url(../images/ship.png), linear-gradient(90.93deg, #000f21 18.18%, rgba(1, 9, 51, 0.3) 64.92%);
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    height: 900px;
}

p {
    font-family: 'Krub', sans-serif;
    font-weight: 400;
}

.price-banner {
    overflow: hidden;
    margin: 100px 200px;
    font-family: 'Rubik', sans-serif;
}

.price-banner p {
    background-color: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 2px 10px;
    border-left: 3px solid transparent;
    border-image: linear-gradient(to bottom, #FFB629, #FFDA56, #FFD7A6) 1;
    padding: 2px 8px;
    font-weight: 400;
    color: #fff;
}

.price-banner h1 {
    font-weight: 700;
    font-size: 60px;
    color: #fff;
}

@media screen and (min-width:1600px) {
    .price-banner {
        margin: 100px 360px;
    }
}

@media screen and (max-width:1599px) {
    header {
        height: 650px;
    }
}

@media screen and (max-width:780px) {
    .price-banner {
        margin: 50px 150px;
    }

    .sub-content h1 {
        font-size: 45px;
    }
}

@media screen and (max-width:580px) {
    header {
        height: max-content;
    }
    .price-banner {
        margin: 50px 100px;
    }
}

/* End of header section */