*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background-color: white;
}

header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: rgb(23, 23, 26);
}

li{
    list-style: none;
}

a{
  text-decoration: none;
}

.logo{
    width: 1.3%;
    display: flex;
    margin-left: 100px;
    filter: brightness(0) invert(1);
    cursor: pointer;
}


.search{
    width: 1.3%;
    margin-right: 100px;
    filter: brightness(0) invert(1);
    cursor: pointer;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 122px;
}

.nav-links li{
    font-size: 10px;
    position: relative;
}

.nav-links li a{
    color: rgb(177, 177, 177);
}

.dropdown{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    padding: 30px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 30px;
    width: 100vw;
    z-index: 999;
}

.nav-links li:hover .dropdown{
    display: flex;
}

.column h5{
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    color: grey;
}

.large-text{
    font-size: 24px;
    margin: 5px 0;
    color: #fff;
}

.small-text{
    font-size: 12px;
    margin: 10px 0;
    color: #fff;
}

.image1{
    background-image: url('hero_iphone16pro_avail__fnf0f9x70jiy_largetall_2x.jpg');
}

.image2{
    background-image: url('hero_iphone16_avail__euwzls69btea_largetall_2x.jpg');
}

.image3{
    background-image: url('hero_macbook_air_m3__cp4t7pn8zqaa_largetall_2x.jpg');
}

.image4{
    background-image: url('promo_macbookpro_announce__gdf98j6tj2ie_large_2x.jpg');
}

.image5{
    background-image: url('promo_ipadair__cu1bnxi7uuwm_large_2x.jpg');
}

.image6{
    background-image: url('promo_ipadpro__ch217v9v7no2_large_2x.jpg');
}

.image7{
    background-image: url('promo_ipad__fioegapg12qi_large_2x.jpg');
}
.hero-image{
    height: 730px;
    width: 100vw;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}

.white{
    color: white;
}

.overlay{
    position: absolute;
    top: 19%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}

.overlay h2{
    font-size: 50px;
    margin-bottom: 15px;
    cursor: pointer;
}

.overlay p{
    font-size: 28px;
    margin-top: 10px;
    cursor: pointer;
}

.top-bottom{
    margin-top: 10px;
    padding: 11px 22px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: rgb(48, 111, 219);
    color: white;
    cursor: pointer;
}

.middle{
    margin-top: 10px;
    padding: 11px 22px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: #fff;
    color: black;
    cursor: pointer;
}

.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
    padding: 10px;
}

.grid-image{
    position: relative;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

.center{
    margin-top: 10px;
    padding: 11px 22px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: black;
    color: white;
    cursor: pointer;
}

h3{
    font-size: 30px;
}

.lil-grid{
    margin-top: 10px;
    padding: 11px 22px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: rgb(48, 111, 219);
    color: white;
    cursor: pointer;
}

.small{
    font-size: 16px;
}

footer{
    background-color: #f5f5f5;
    padding: 40px 60px;
    color: #1d1d1f;
    font-size: 12px;
}

.footer-container{
    max-width: 1200px;
    margin: auto;
}

.footer-columns{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column{
    flex: 1;
    min-width: 150px;
    margin: 10px 20px;
}

.footer-column h4{
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column ul{
    list-style: none;
    padding: 0;
}

.footer-column ul li{
    margin-bottom: 8px;
}

.footer-column ul li a{
    text-decoration: none;
    color: rgb(75, 77, 76);
}

.footer-column ul li a:hover{
    text-decoration: underline;
}

.retail{
    margin-bottom: 10px;
}

.retail p a{
    text-decoration: underline;
}

.footer-legal{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.right{
    margin-right: auto;
}
