* {
    margin: 0;
    padding: 0;
    outline: none;
    position: fixed;
}

body {
    width: 100%;
    height: 100%;

}

#app {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

#app img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}