@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap";

/* src/styles.scss */
@font-face {
  font-family: "PassionsConflict";
  src: url("./media/PassionsConflictRUS-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-size: 10px;
}
body {
  background-color: #FFF7F8;
  background-image: url(/background1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body > * {
  position: relative;
  z-index: 1;
}
app-root {
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.4rem;
  margin: 0;
  line-height: 1.6;
  color: #111010;
  text-shadow: 0 0 3px rgba(238, 210, 167, 0.7);
  text-align: center;
}
p {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #111010;
  line-height: 150%;
}
p.italic {
  font-style: italic;
}
p.big {
  font-size: 1.8rem;
}
p.large {
  font-size: 1.6rem;
}
p.small {
  font-size: 1.2rem;
}
p.center {
  text-align: center;
}
p.bright {
  color: #FFFFFF;
}
a {
  font-size: 1.4rem;
  color: #111010;
  text-decoration: underline;
}
button,
.button {
  width: 100%;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
  padding: 2rem 2.4rem;
  background-color: #2A4C09;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  margin: 0;
  cursor: pointer;
  text-align: center;
  display: block;
  font-style: normal;
  text-decoration: none;
}
button:hover,
.button:hover {
  background-color: #3d6e10;
}
button:active,
.button:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}
button:disabled,
.button:disabled {
  background-color: #95A281;
  cursor: not-allowed;
}
.container {
  max-width: 60rem;
  height: auto;
  min-height: 100%;
  margin: auto;
  padding: 1.6rem 1.6rem 1.5rem 1.6rem;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mt-12 {
  margin-top: 12px;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.column-flex {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.top-auto {
  margin-top: auto;
}
.scroll {
  height: 100%;
  overflow: scroll;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      180deg,
      #096430 0%,
      #0e3125 50%,
      #0a4e3f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.loader {
  border: 8px solid #c2aa7b;
  border-top: 8px solid #fffffd;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  animation: spin 1s linear infinite;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
