html,* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    
html {
    height: 100%;
}

body {
    background-color: #fff;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


img{
    max-width: 100%;
    height: auto;
}
    
