  *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body{
    height: 100%;
    width: 100%;
}
#main{
     height: 100%;
     width: 100%;
}
#page{
     height: 100vh;
    width: 100%;
position: relative;
}
.wrapper{
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
}
.wrapper h1{
    font-size: 5em;
    font-weight: 500;
    color: aliceblue;
}
@media(max-width: 599px){
    
    .wrapper h1{
       font-size: 2em; 
    }
    .wrapper img{
        height: 200px;
        width: 100px;
    }
}
/* tab:600-991px      for lap pc:992px-1900px */