body {
    overflow-x: hidden;
}

.blue-text {
    color: #0EC0C3;
    margin: 35px 0;
}

.red-text {
    color: red;
}

p, li {
    font-size: 18px;
}

.text p {
    margin-top: 30px;
}

.orange-text {
    color: orange;
}

u {
    list-style: circle;
    text-decoration: none;
    color: rgb(0, 225, 255);
}

.header {
    display: flex;
    justify-content: center;
    align-items: end;
}

.header img {
    width: 150px;
    height: 110px;
    margin: 10px 0;
}

.header h3 {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.menu {
    display: flex;
    justify-content: center;
}

#glass-apple {
    width: 100%;
}

.gift {
    display: inline-block;
    width: 40%;
}

.gift-img {
    display: inline-block;
    width: 40%;
}

.gift-img img {
    max-width: 80%;
}

.card-ip15, 
.card-watch {
    box-shadow: 2px 2px 2px 2px gray;
    display: flex;
    justify-content: space-evenly;
}

.best-sell {
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
}

.card-ip15 {
    width: 40%;
    height: 800px;
}

.card-ip15 img,
.card-ip15 h3,
.card-ip15 u {
    width: 100%;
}

.card-ip15 h3, 
.card-ip15 img, 
.card-watch h3, 
.card-watch img {
    text-align: center;
}

.card-watch {
    width: 40%;
    margin: 0 30px 40px 0;
}

.card-watch img {
    width: 90%;
    height: 320px;
}

.card-watch h3 {
    width: 100%;
}

.footer {
    background-color: #0EC0C3;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .header {
        display: block;
        text-align: center;
    }

    .menu {
        display: flex;
        justify-content: end;
    }

    .orange-text {
        text-align: center;
    }

    .best-sell {
        display: block;
    }

    .card-ip15 {
        width: 90%;
        margin: 0 auto;
    }

    .card-watch {
        margin: 40px auto;
        width: 90%;
    }
}