.container5 {
    position: relative;
    text-align: center;
    color: white;
}

.container5 img {
    border-radius: 2%;
    width: 80%;
}

.bottom-left {
    position: absolute;
    bottom: 118px;
    left: 11%;
    font-weight: 700;
    font-size: 70px;
    text-decoration: none;
    /* color: aliceblue; */
}

.bottom-left p {
    position: absolute;
    /* bottom: -118px; */
    left: 10px;
    font-weight: 300;
    font-size: 20px;
    /* text-decoration: none; */

}

#myVideo1 {
    margin-left: 10%;
    margin-top: 2%;
    border-radius: 2%;
    width: 80%;
    /* background-color: aqua; */
}

.nav18 {
    /* background-color: #c00d0d; */
    height: 15vh;

}

.navbar18 h1 {
    /* background-color: #984949; */
    height: 15vh;
    font-size: 70px;
    text-align: center;
    margin-top: 4%;

}


.offer-container {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(185, 191, 191, 0.116);
    width: 100%;
    height: 70vh;
    margin-top: 10%;
}

.text-content {
    max-width: 300px;
    margin-left: 35%;
    margin-top: 10%;

}



h1 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.learn-more {
    color: #0071e3;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.learn-more:hover {
    text-decoration: underline;
}

.album-stack {
    display: flex;
    align-items: center;
    position: relative;
    width: 200px;
    height: 190px;
    margin-bottom: -10%;
    margin-left: 5%;
}

.album-cover {
    width: 100%;
    height: 100%;
    background-image: url('./airpodsl.jpg');
    /* Replace with the actual cover image */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.album-stack::before,
.album-stack::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    /* Change this color to match other covers */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.album-stack::before {
    top: -10px;
    left: 10px;
    z-index: -1;
}

.album-stack::after {
    top: -20px;
    left: 20px;
    z-index: -2;
}