* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
}

html, body {
    height: 100%;
    width: 100%;
}

#nav {
    height: 150px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
    position: fixed;
    z-index: 99;
}


#nav img {
    height: 110px;
    width: 120px;
    background-color : beige;
}

#nav h4 {
    text-transform: uppercase;
     font-size: large;
     font-weight: 600;
     color: whitesmoke;
}

#main {
    width: 100%;
    height: 100%; /* Use 100vh for full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black ;
    position: relative;
    text-align: center;
}

#main video {
    width: 930px;
    height: 700px;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    
}
#main{
    position: relative;
}

#page1{
    height: 100vh;
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#page1 h1{
    font-size: 70px;
    font-weight: 900;
    position: relative;
    
}
#page h1::before{
    content: "WEAR AESTHETIC N PREMIUM CLOTHES";
    position: absolute;
    color: bisque;


}
#page1 h2{

    font-size: 30px;
    font-weight: bolder;
    margin-top: 10px;
    margin-bottom: 20px;
}

#page2{
    height: 100vh;
    width: 100%;
}