@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --color-black: #0f0f0f;
  --color-green: #76c04e;
  --color-white: #ffffff;

  --transition: all 400ms ease;

  --main-font: "Montserrat", sans-serif;

  --color-bg: #161616;
}

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

html {
  box-sizing: border-box;
  /*10px/16px = 62.5% -> 1rem = 10px */
  font-size: 62.5%;
}

body {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  font-size: 1.6rem;
  color: var(--color-white);
  background-color: var(--color-black);
  letter-spacing: -0.015em;
}

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

h1 {
  font-weight: 700;
  font-size: 11rem;
  line-height: 12rem;
}

h2 {
  font-weight: 700;
  font-size: 9.8rem;
  line-height: 11rem;
}

h3 {
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 4.2rem;
}

h4 {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 3.8rem;
}

h5 {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 3.4rem;
}

h6 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2.4rem;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.btn {
  min-width: 210px;
  padding: 5px 15px;
  height: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  cursor: pointer;
}

.btn:hover {
  color: var(--color-black);
  background: var(--color-white);
}
.activeBtn {
  color: var(--color-black);
  background: var(--color-white);
}



/* breakpoint Mobile 
    min-width: 320px;
    max-width: 480px;
  */

/* breakpoint Tabled 
    min-width: 481px;
    max-width: 768px;
  */

/* breakpoint Laptop 
    min-width: 769px;
    max-width: 1023px;
  */

/* breakpoint Desktop 
    min-width: 1024px;
    max-width: 1200px;
  */
