#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
}

body {
    height: 100vh;
    width: 100vw;
    margin: 0px;
    background-color: black;
}