@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,600;0,700;1,600;1,700&display=swap");
/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Open+Sans:wght@400;600;700&display=swap"); */

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

:root {
  --animate-delay: 1s;
  --font-title: "Montserrat", sans-serif;
  --font-text: "open-sans", sans-serif;
  --color-main: #222f3d;
  --color-contrast: #d4aa48;
  --color-light: #3498db;
  --color-title: #131c26;
  --bg: #ffffff;
  --bg-tinted: #f2f4f7;
}

html {
  scroll-behavior: smooth;
}
/*
font-family: 'Chivo', sans-serif;
font-family: 'Oswald', sans-serif;
*/

body {
  background-color: var(--bg);
  font-family: var(--font-text);
}

h2,
h3 {
  color: var(--color-title);
  text-align: center;
  font-family: var(--font-title);
}

h2 {
  padding: 80px 0;
  font-size: 30px;
}

header {
  display: flex;
  flex-direction: column;
  color: var(--bg-tinted);
  width: 100%;
  /* height: 100vh; */
  position: relative;
  background-color: #222f3d;
}

/* header ul {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin: 0 2%;
}

header ul li {
  list-style-type: none;
}

header ul a {
  text-decoration: none;
  color: var(--bg-tinted);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--font-title);
}

header ul li::first-letter {
  color: var(--color-contrast);
} */

@media screen and (max-width: 470px) {
  .welcome span {
    font-size: 2rem;
  }
  .welcome span:nth-of-type(4) {
    font-size: 1rem;
  }

  .presentation {
    margin: 0;
  }

  .card-wrapper {
    margin-bottom: 50px;
  }

  h2 {
    padding: 20px 0 40px;
  }
}
