/*
Theme Name: Simple Prelaunch Page
Description: A minimalist prelaunch/maintenance WordPress theme that shows a single image.
Version: 1.0
Author: Custy.app
*/

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: #000;
}
.image-wrapper {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.image-wrapper picture,
.image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

