/*-------------------------------------------------------
  Custom Fonts
-------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

/*-------------------------------------------------------
  Variables
-------------------------------------------------------*/

:root {
  --white: #fff;
  --white-rgb: 255, 255, 255;

  --cream: #ebe1d5;
  --blue: #121b43;

  --black: #000;
  --black-rgb: 0, 0, 0;

  --header-height: 140px;
  --admin-height: 32px;
}

/*-------------------------------------------------------
  Base
-------------------------------------------------------*/

html,
body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

body,
html {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  background: var(--cream);
  color: var(--blue);
  font-family: "Poppins", sans-serif;
}

/*-------------------------------------------------------
  Holding Page
-------------------------------------------------------*/

.holding-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  text-align: center;
}

.holding-page h1,
.holding-page h2,
.holding-page h3 {
  font-family: "Poppins", serif;
  font-size: 36px;
  font-weight: 600;
}

.holding-page h3 {
  font-size: 30px;
  font-weight: 400;
}

.holding-page a {
  color: var(--blue);
  text-decoration: none !important;
}

@media screen and (max-width: 600px) and (max-height: 800px) {
  .holding-page {
    padding: 100px 0;
    align-items: flex-start;
    height: auto;
  }
}

/*-------------------------------------------------------
  Site Credit
-------------------------------------------------------*/

.site-credit {
  position: fixed;
  right: 20px;
  bottom: 15px;
  opacity: 0.1;
  transition: 0.3s ease all;
}

.site-credit:hover {
  opacity: 0.2;
}

.site-credit img {
  height: 18px;
  width: auto;
}
