@charset "UTF-8";

@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/FiraSans-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Fira Sans';
  font-style: bold;
  font-weight: 700;
  src: url('/fonts/FiraSans-Bold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/Lato-Regular.ttf') format('truetype');
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  /* background-color: #333333; */
  font-family: 'Fira Sans', sans-serif;
  background-size: cover;
  background-position: bottom;
  background-image: url(/img/winter_2022_1680_945.jpg);
}

#notice {
  padding: 0 1rem;
  background-color: #41481e;
  height: 50px;
  display: flex;
  width: 100%;
  position: fixed;
  color: white;
  justify-content: center;
  align-items: center;
}

#notice .offer {
  text-align: center;
}

#notice p a {
  color: #ffffff;
  font-weight: bold;
}

#header {
  color: #333;
  position: absolute;
  top: 5rem;
  left: 1rem;
  font-family: 'Fira Sans';
  font-size: 2rem;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* .cta {
  margin-top: 3rem;
  position: relative;
  top: 23.75rem;
} */

.button {
  color: #fff;
  font-family: 'Fira Sans', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  background-color: #41481e;
  border: 0;
  border-radius: 2rem;
  /* border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; */
  padding: 0.75rem 3rem;
  position: relative;
  /* bottom: 4rem; */
  cursor: pointer;
  outline: 2px solid #fff;
  /* left: 50%; */
  /* -ms-transform: translate(-50%, -50%); */
  /* transform: translate(-50%); */
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 300ms ease;
}

.button:hover {
  background-color: #fff;
  color: #000;
  outline: 2px solid #41481e;
}

.button:hover::after {
  content: "\279C";
  margin-left: 0.5rem;
  position: relative;
  font-size: 0.8rem;
  color: #000;
  font-weight: bold;
}

#footer {
  display: flex;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

#footer p a {
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  /* text-decoration: none; */
}