*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.screen1{
    /* border: 12px solid gray; */
}
.nav-container{
    display: flex;
     justify-content: center;
     
     
}
.nav-container div nav {
    display: flex;
    gap: 20px;
    align-items: center;
   
}
.nav-container div nav li {
    list-style: none;
}
.nav-container div nav li a {
    text-decoration: none;
    color: black;
}

.second-nav{
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* .main {
    position: relative;
}
.main img {
    position: absolute;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    margin: 30px;
   
}
.main div {
    position: absolute;
    top: 300px;
    left: 205px;
}

}


} */
.btn1{
    color: white;
    background-color: rgb(20, 109, 145);
    height: 50px;
    width: 100px;
    border-radius: 25px;
    border: none;
    justify-self: center;
    /* position: absolute; */
    /* top: 500px;
    left: 150px; */

}
.main a {
    /* position: absolute; */
    /* top: 510px;
    left: 250px;
    margin-left: 20px; */
    color: rgb(32, 130, 168);
    text-decoration: none;
}
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgray;
    height: 500px;
}
.img1 {
    position: absolute;
    z-index: 2;
    height: 500px;
    width: 1000px;
    margin: 30px;
}
.text-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;

}
.text h1 {
    font-size: 150px;
}
.text h4 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
}
.text p {
    text-align: center;
}

.img2 {
    
    position: absolute;
    z-index: 2;
    height: 600px;
    width: 600px;
    margin: 30px;
    
}
.text-btn2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 100px;
}
.img1 {
    position: absolute;
    z-index: 2;
    height: 500px;
    width: 1000px;
    margin: 30px;
}
.text-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;

}
.text2{
    height:500px;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
 .text2 h1 {
    font-size: 150px;
    margin-top: 20px;
}
 .text2 h4 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
}
 .text2 p {
    text-align: center;
}
.main2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgray;
    height: 700px;

}
.text-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 250px;
}
.screen2{
    /* border: 2px solid gray; */
}
.screen3{
    /* border: 2px solid gray; */
    background-color: lightgray;

   
}
.screen3 h1 {
    text-align: center;
    padding: 50px;
    font-size: 60px;
    text-justify: center;
}
.cart{
     display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 450px;
    gap: 50px;
}
.cart div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.cart div h3 {
    font-weight: 100;
    font-size: 100px;
}
.cart div img{
    height: 150px;
}
.cart div button{
     color: white;
    background-color: rgb(20, 109, 145);
    height: 50px;
    width: 100px;
    border-radius: 25px;
    border: none;
    justify-self: center;
}

.grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin: 20px;
    justify-content: center;
    align-content: center;
    margin-left: 30px;
}
.grid div {
    align-self: center;
}


.screen1 {
    animation: fadeSlideUp 1.5s ease forwards;
}

.screen1 .img1 {
    animation: imageZoom 2s ease forwards;
}

.screen2 {
    animation: fadeSlideUp 1.5s ease 0.5s forwards; 
}

.screen2 .img2 {
    animation: imageZoom 2s ease 0.5s forwards;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes imageZoom {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
