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

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: sans-serif;
  background: #000;
}

main {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.slide {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Сохраняет пропорции и заполняет весь экран */
  display: block;
}
