.background {
    height: 110vh;
}

.content {
    top: 0%;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
}

.text {
    transform: translate(0%, 0%);
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text p {
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 42px;
}

.text h2 {
    font-size: 24px;
    font-family: Arial, sans-serif;
}

.text h3 {
    font-size: 22px;
    font-family: Arial, sans-serif;
}

.text h4 {
    font-size: 26px;
    font-family: Arial, sans-serif;
}

.text h5 {
    font-size: 22px;
    font-family: Arial, sans-serif;
    color: #ff9900;
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    font-weight: normal;
    padding-bottom: 3%;
}

.text p {
    font-size: 9px;
}

.image-container {
    transform: translate(0%, 0%);
    width: 100%;
    height: 500px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.image-container img {
    width: auto;
    height: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.image-container img.active {
    opacity: 1;
    z-index: 2;
}

.arrow {
    cursor: pointer;
    color: #ff9900;
    font-size: 50px;
    text-align: center;
    position: fixed;
    width: 50px;
    z-index: 100;
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
}

.arrow:hover {
    color: #ff7300;
    text-shadow: 5px 5px 15px #000000;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.up {
    right: 80%;
    top: 15%;
}

.down {
    right: 80%;
    bottom: 10%;
}

.variant-select {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-300px, -50%);
    padding: 12px 24px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    color: #ff7e05;
    background-color: #1a1a1a;
    border: 2px solid #ff8800;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 0 10px #ff6600, 0 0 20px #ff7300, 0 0 30px #ff8c00;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #ff7b00, 0 0 10px #ff8800;
    cursor: pointer;
}

.variant-select:hover {
    background-color: #ff7300;
    color: #1a1a1a;
    box-shadow: 0 0 15px #ff7300, 0 0 25px #ff8c00, 0 0 40px #ff7300;
}

.addToCartButton {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #ff7e05;
    border: 2px solid #ff8800;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 0 10px #ff6600, 0 0 20px #ff7300, 0 0 30px #ff8c00;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #ff7b00, 0 0 10px #ff8800;
}

.addToCartButton:hover {
    background-color: #ff7300;
    color: #1a1a1a;
    box-shadow: 0 0 15px #ff7300, 0 0 25px #ff8c00, 0 0 40px #ff7300;
}

@media (max-width: 425px) {
    .content {
        min-width: 400px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 15%;
        margin: 0 auto;
        right: 1%;
        top: 15%;
    }

    .text {
        width: 500px;
        height: auto;
    }

    .text h1 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 13px;
        margin-bottom: 0px;
    }

    .text h3 {
        font-size: 13px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .text h5 {
        font-size: 18px;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        left: 15%;
        bottom: 300px;
    }

    .variant-select {
        padding: 8px 16px;
        font-size: 10px;
        transform: translate(-80px, -50%);
        margin-bottom: 5px;
        box-shadow: 0 0 5px #ff7b00, 0 0 10px #ff7b00, 0 0 15px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 10px #ff7b00, 0 0 15px #ff8c00, 0 0 20px #ff7b00;
    }

    .addToCartButton {
        padding: 8px 16px;
        font-size: 10px;
        box-shadow: 0 0 5px #ff7b00, 0 0 10px #ff7b00, 0 0 15px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 10px #ff7b00, 0 0 15px #ff8c00, 0 0 20px #ff7b00;
    }

    .arrow {
        font-size: 40px;
        width: 80px;
    }

    .up {
        right: 70%;
        top: 24%;
    }

    .down {
        right: 70%;
        bottom: 50%;
    }
}

@media only screen and (min-width: 426px) and (max-width: 600px) {
    .content {
        min-width: 400px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 15%;
        margin: 0 auto;
        right: 1%;
        top: 15%;
    }

    .text {
        width: 500px;
        height: auto;
    }

    .text h1 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 13px;
        margin-bottom: 0px;
    }

    .text h3 {
        font-size: 13px;
        margin-bottom: 0px;
    }

    .text h4 {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .text h5 {
        font-size: 18px;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        left: 15%;
        bottom: 300px;
    }

    .variant-select {
        padding: 8px 16px;
        font-size: 12px;
        transform: translate(-150px, -50%);
        margin-bottom: 5px;
        box-shadow: 0 0 5px #ff7b00, 0 0 10px #ff7b00, 0 0 15px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 10px #ff7b00, 0 0 15px #ff8c00, 0 0 20px #ff7b00;
    }

    .addToCartButton {
        padding: 8px 16px;
        font-size: 12px;
        box-shadow: 0 0 5px #ff7b00, 0 0 10px #ff7b00, 0 0 15px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 10px #ff7b00, 0 0 15px #ff8c00, 0 0 20px #ff7b00;
    }

    .arrow {
        font-size: 40px;
        width: 80px;
    }

    .up {
        right: 70%;
        top: 26%;
    }

    .down {
        right: 70%;
        bottom: 32%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
    .content {
        min-width: 700px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 15%;
        margin: 0 auto;
        right: 14%;
        top: 9%;
    }

    .text {
        width: 450px;
        height: auto;
    }

    .text h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .text h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h4 {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .text h5 {
        font-size: 24px;
    }

    .image-container {
        width: 180px;
        height: 240px;
    }

    .image-container img {
        width: auto;
        height: 240px;
        left: 40%;
        bottom: 300px;
    }

    .variant-select {
        padding: 10px 20px;
        font-size: 12px;
        transform: translate(-100px, -50%);
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .addToCartButton {
        padding: 10px 20px;
        font-size: 12px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .arrow {
        font-size: 40px;
        width: 80px;
    }

    .up {
        right: 74%;
        top: 22%;
    }

    .down {
        right: 74%;
        bottom: 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .content {
        min-width: 700px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 15%;
        margin: 0 auto;
        right: 1%;
        top: 9%;
    }

    .text {
        width: 500px;
        height: auto;
    }

    .text h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .text h4 {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .text h5 {
        font-size: 24px;
    }

    .image-container {
        width: 240px;
        height: 240px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        left: 44%;
        bottom: 300px;
    }

    .variant-select {
        padding: 10px 20px;
        font-size: 14px;
        transform: translate(-100px, -50%);
        margin-bottom: 8px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .addToCartButton {
        padding: 10px 20px;
        font-size: 14px;
        box-shadow: 0 0 6px #ff7b00, 0 0 12px #ff7b00, 0 0 18px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 12px #ff7b00, 0 0 18px #ff8c00, 0 0 25px #ff7b00;
    }

    .arrow {
        font-size: 40px;
        width: 80px;
    }

    .up {
        right: 67%;
        top: 21%;
    }

    .down {
        right: 67%;
        bottom: 48%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
    .content {
        min-width: 1000px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 30%;
        margin: 0 auto;
        right: 17%;
    }

    .text {
        width: 720px;
        height: auto;
    }

    .text h1 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .text h2 {
        font-size: 17px;
        margin-bottom: 2px;
    }

    .text h3 {
        font-size: 17px;
        margin-bottom: 2px;
    }

    .text h4 {
        font-size: 17px;
        padding-bottom: 40px;
    }

    .text h5 {
        font-size: 21px;
    }

    .image-container {
        width: 260px;
        height: 260px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        left: 60%;
        bottom: 300px;
    }

    .variant-select {
        padding: 10px 20px;
        font-size: 12px;
        transform: translate(-110px, -50%);
        margin-bottom: 10px;
        box-shadow: 0 0 7px #ff7b00, 0 0 14px #ff7b00, 0 0 20px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 20px #ff8c00, 0 0 30px #ff7b00;
    }

    .addToCartButton {
        padding: 10px 20px;
        font-size: 12px;
        box-shadow: 0 0 7px #ff7b00, 0 0 14px #ff7b00, 0 0 20px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 20px #ff8c00, 0 0 30px #ff7b00;
    }

    .arrow {
        font-size: 50px;
        width: 80px;
    }

    .up {
        right: 62%;
        top: 40%;
    }

    .down {
        right: 62%;
        bottom: 10%;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1918px) {
    .content {
        min-width: 1400px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 20%;
        margin: 0 auto;
        right: 58%;
    }

    .text {
        width: 720px;
        height: auto;
    }

    .text h1 {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .text h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .text h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .text h4 {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .text h5 {
        font-size: 30px;
    }

    .image-container {
        left: 12%;
        width: 420px;
        height: 420px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        transform: translate(80%, 0%);
        bottom: 300px;
    }

    .variant-select {
        padding: 12px 24px;
        font-size: 18px;
        transform: translate(-150px, -50%);
        margin-bottom: 10px;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .addToCartButton {
        padding: 12px 24px;
        font-size: 18px;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .arrow {
        font-size: 70px;
        width: 80px;
    }

    .up {
        right: 58%;
        top: 31%;
    }

    .down {
        right: 58%;
        bottom: 6%;
    }
}

@media only screen and (min-width: 1919px) and (max-width: 1920px) {
    .content {
        min-width: 1600px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 10%;
        margin: 0 auto;
        right: 54%;
        top: 5%;
    }

    .text {
        width: 700px;
        height: auto;
        margin-left: 0%;
        padding-top: 5%;
    }

    .text h1 {
        font-size: 50px;
        margin-bottom: 40px;
    }

    .text h2 {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .text h3 {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .text h4 {
        font-size: 23px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .text h5 {
        font-size: 36px;
    }

    .image-container {
        transform: translate(15%, 5%);
        width: 420px;
        height: 420px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        left: 55%;
        bottom: 300px;
    }

    .variant-select {
        padding: 12px 24px;
        font-size: 18px;
        transform: translate(-150px, -50%);
        margin-bottom: 10px;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
    }

    .variant-select:hover {
        background-color: #ff7300;
        color: #1a1a1a;
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .variant-select:active {
        background-color: #ff7300;
        color: #1a1a1a;
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .addToCartButton {
        transform: translate(-100px, -25px);
        padding: 12px 24px;
        font-size: 18px;
        background-color: #1a1a1a;
        color: #ff7e05;
        border: 2px solid #ff8800;
        border-radius: 8px;
        font-family: 'Arial', sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        z-index: 3;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
        transition: all 0.3s ease;
        text-shadow: 0 0 5px #ff7b00, 0 0 10px #ff8800;
    }

    .addToCartButton:hover {
        background-color: #ff7300;
        color: #1a1a1a;
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .addToCartButton:active {
        background-color: #ff7300;
        color: #1a1a1a;
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .arrow {
        font-size: 60px;
        width: 80px;
    }

    .up {
        right: 61%;
        top: 26%;
    }

    .down {
        right: 61%;
        bottom: 9%;
    }
}

@media only screen and (min-width: 1921px) and (max-width: 2300px) {
    .content {
        min-width: 1600px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 13%;
        margin: 0 auto;
        right: 49%;
    }

    .text {
        width: 800px;
        height: auto;
        margin-left: 5%;
    }

    .text h1 {
        font-size: 56px;
        margin-bottom: 50px;
    }

    .text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .text h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .text h4 {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .text h5 {
        font-size: 36px;
    }

    .image-container {
        transform: translate(0%, 5%);
        width: 520px;
        height: 520px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        transform: translate(20%, 0%);
        bottom: 300px;
    }

    .variant-select {
        padding: 12px 24px;
        font-size: 18px;
        transform: translate(-300px, -50%);
        margin-bottom: 10px;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .addToCartButton {
        padding: 12px 24px;
        font-size: 18px;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .arrow {
        font-size: 100px;
        width: 80px;
    }

    .up {
        right: 70%;
        top: 27%;
    }

    .down {
        right: 70%;
        bottom: 4%;
    }
}

@media only screen and (min-width: 2301px) and (max-width: 2559px) {
    .content {
        min-width: 1600px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 15%;
        margin: 0 auto;
        right: 37%;
    }

    .text {
        width: 900px;
        height: auto;
        margin-left: 5%;
    }

    .text h1 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text h4 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .text h5 {
        font-size: 36px;
    }

    .image-container {
        transform: translate(3%, 5%);
        width: 600px;
        height: 600px;
    }

    .image-container img {
        width: auto;
        height: 600px;
        transform: translate(-16%, 0%);
        bottom: 300px;
    }

    .variant-select {
        padding: 12px 24px;
        font-size: 18px;
        transform: translate(-300px, -50%);
        margin-bottom: 10px;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
    }

    .variant-select:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .addToCartButton {
        padding: 12px 24px;
        font-size: 18px;
        box-shadow: 0 0 8px #ff7b00, 0 0 16px #ff7b00, 0 0 24px #ff8c00;
    }

    .addToCartButton:hover {
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .arrow {
        font-size: 100px;
        width: 80px;
    }

    .up {
        right: 75%;
        top: 28%;
    }

    .down {
        right: 75%;
        bottom: 3%;
    }
}

@media only screen and (min-width: 2560px) {
    .background {
        height: 110vh;
    }

    .content {
        min-width: 1600px;
        height: auto;
        padding-bottom: 5%;
        padding-top: 15%;
        margin: 0 auto;
        right: 25%;
    }

    .text {
        width: 1000px;
        height: auto;
        margin-left: 5%;
        padding-top: 5%;
    }

    .text h1 {
        font-size: 66px;
        margin-bottom: 60px;
    }

    .text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .text h3 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .text h4 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .text h5 {
        font-size: 48px;
    }

    .image-container {
        width: 500px;
        height: 700px;
    }

    .image-container img {
        width: 500px;
        height: 700px;
        transform: translate(10%, 0%);
    }

    .variant-select {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-250px, -50%);
        padding: 15px 70px;
        font-size: 20px;
        font-family: 'Arial', sans-serif;
        color: #ff7b00;
        background-color: #1a1a1a;
        border: 2px solid #ff7b00;
        border-radius: 8px;
        margin-bottom: 15px;
        text-align: center;
        box-shadow: 0 0 10px #ff7b00, 0 0 20px #ff7b00, 0 0 30px #ff8c00;
        transition: all 0.3s ease;
        text-shadow: 0 0 5px #ff7b00, 0 0 10px #ff7b00;
    }

    .variant-select:hover {
        background-color: #ff7b00;
        color: #1a1a1a;
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .addToCartButton {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-150px, -50%);
        padding: 15px 70px;
        background-color: #1a1a1a;
        color: #ff7b00;
        border: 2px solid #ff7b00;
        border-radius: 8px;
        font-size: 20px;
        font-family: 'Arial', sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        z-index: 3;
        box-shadow: 0 0 10px #ff7b00, 0 0 20px #ff7b00, 0 0 30px #ff8c00;
        transition: all 0.3s ease;
        text-shadow: 0 0 5px #ff7b00, 0 0 10px #ff7b00;
    }

    .addToCartButton:hover {
        background-color: #ff7b00;
        color: #1a1a1a;
        box-shadow: 0 0 15px #ff7b00, 0 0 25px #ff8c00, 0 0 40px #ff7b00;
    }

    .arrow {
        font-size: 100px;
        width: 80px;
    }

    .up {
        left: 20%;
        top: 27%;
    }

    .down {
        left: 20%;
        bottom: 7%;
    }
}