/* Eslem Gelinlik - Coming Soon styles */
:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: #b46f70; /* requested background color */
}

.coming-soon {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.coming-soon img {
  width: min(480px, 70vw);
  height: auto;
  display: block;
}

