@font-face {
  font-family: 'Ambit';
  src:
    url('../fonts/ambit-regular.woff2') format('woff2'),
    url('../fonts/ambit-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ambit';
  src:
    url('../fonts/ambit-bold.woff2') format('woff2'),
    url('../fonts/ambit-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #111;
    font-family: 'Ambit', Helvetica, sans-serif;
    font-size: rem(16);
    line-height: rem(24);
    background: linear-gradient(107.34deg, #e39fbb 0%, #dbb6a1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 60%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 48px;
    
    @media (min-width: 768px) {
      width: 40%;
    }
}

h4 {
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

a {
    color: #111;
    text-decoration-color: rgba(17, 17, 17, 0.3);
    transition: text-decoration-color 0.2s ease-in;
}

a:hover {
  text-decoration-color: rgba(17, 17, 17, 1);
  transition: text-decoration-color 0.3s ease-in;
}

.open-time {
    font-size: 22px;
    line-height: 32px;
    margin: 0 auto;
    text-align: center;
}

.refresh {
  position: absolute;
  bottom: 0;
  left: 24px;
  margin: 0 auto;
  padding: 24px;
}