* {
  box-sizing: border-box;
}
html, body, main, .image {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-shadow: none;
}
html, body {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
main {
  height: 200px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.image {
  height: 100%;
  width: 100%;
}
