/* Variables */
:root {
  --white: #fff;
  --black: #000;
  --primary-color: #160e33;
  --secondary-color: #160e33;
  --secondary-color: #f5016a;
  --secondary-color: #ffa602;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* General Style */
body {
  font-family: "Montserrat", sans-serif;
  /* background: linear-gradient(to right, #000066, #9696ff); */
  background: var(--black);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 500;
}

p {
  line-height: 2;
  font-size: 90%;
}

section {
  scroll-margin-top: 50px;
}
