@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
  scroll-behavior: smooth;
}

:root {
  --primary-yellow: #FDB913;
  --primary-black: #333333;
  --primary-black-dark: #222222;
  --primary-white: #ffffff;

  --font-heading: 'Gotham', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

body {
  background-color: var(--primary-black);
    font-family: var(--font-body);
    color: var(--primary-white);
}

h1, h2, h3 {
    font-family: var(--font-heading);
  }

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 2rem;
}
  
p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 2rem;
}

li {
    font-family: var(--font-heading);
    list-style-type: none;
    font-size: 1rem;
    font-weight: 300;
}

hr {
  color: var(--primary-white);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

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

a:hover {
  color: var(--primary-yellow);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
    box-sizing: border-box;
}

.indent {
  padding-left: 10%;
}

.thin {
  font-weight: 300;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.dark {
  background-color: var(--primary-black);
}

/* ----- FLEX CLASSES ------ */

.row {
  display: flex;
  gap: 3rem;
}

.column {
  width:50%;
  display: flex;
  flex-direction: column;
}

.flex {
  display: flex;
  flex-direction: row;
}

.center {
  justify-content: center;
}

.end {
  flex-direction: row;
  justify-content: flex-end;
}

.start {
  flex-direction: row;
  justify-content: flex-start;
}

/* ------ RESPONSIVE -------- */

@media (max-width:1024px) {

  .container {
    max-width: 800px;
    padding: 0 1.2rem;
}

  .row {
    flex-direction: column;
  }

  .column {
    width: 100%;
  }

  h1 {
    font-size: 26px;
  }
  
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  li {
    font-size: 1rem;
  }

  div#contact {
      padding: 0 1rem!important;
  }

}