* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background: #02060a;
  overflow: hidden;
}

body {
  min-height: 100svh;
}

.hero {
  width: 100vw;
  height: 100svh;
  background: #02060a;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero picture {
  display: flex;
  width: 100%;
  height: 100%;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill-box;
  object-position: center center;
}