/*------------------------------------------------------------------
This is the main controller file which combines all the modules into one big CSS file.
-------------------------------------------------------------------*/
/*
 * Contains global styles used everywhere, as well as common variables and mixins used in multiple files.
 * To use these, @use this file at the top of the file you want them in, then call them with the 'common' namespace.
 * Any style rules here will only be imported into the final file once, regardless of how many times it is used. Sass is smart!
 */
/************* Common mixins and variables *************/
/* Mixin shortcuts for responsive sizing rules */
/*************** COLOR VARIABLES ***************/
/*************** FONT VARIABLES ***************/
/************* Global styles *************/
html {
  overflow: auto !important;
  height: auto !important;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #fff;
  color: #464646;
  overflow: auto !important;
  height: auto !important;
  padding: 0;
  margin: 0;
  font-size: 15px;
}
body * {
  box-sizing: border-box;
}

main {
  position: relative;
}

#coming_soon {
  width: 100%;
  height: 100vh;
  background-color: #8C8C8C;
  color: #fff;
  display: grid;
  grid-template: 1fr/1fr;
  align-items: center;
  justify-items: center;
}
#coming_soon .logo-section {
  text-align: center;
}
#coming_soon .logo-section img {
  display: block;
}

/*# sourceMappingURL=stays.css.map */
