*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    width: 100%;
    height: 100vh;
}

/* locomotive e main e kunu means parents e height width diba na */


.page1,.page2,.page3{
    width: 100%;
    height: 100vh;

}

.page1{
  background-color: burlywood;
}
.page2{
    background-color: blue;
}
.page3{
    background-color: red;
}


.image {
    width: 40%;
    height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.5;
}