@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --snk-white: #ffffff;
  --snk-light-1: #eff0f2;
  --snk-light-2: #e1e3e9;
  --snk-dark: #151515;
  --snk-grey-1: #959595;
  --snk-grey-2: #d0d1d1;
  --snk-grey-3: #8C8C8C;
  --snk-grey-4: rgba(248, 248, 248, 0.6);
  --snk-main: #23b4b2;
  --snk-pale-blue: #c7d7d6;
  --snk-red: #fe2c2c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Montserrat";
  font-weight: 400;
  line-height: 1;
  font-size: 18px;
  color: var(--snk-dark);
  background-color: var(--snk-light-2);
  scroll-behavior: smooth;
  min-width: 375px;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */