/* <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Sacramento&family=WindSong:wght@500&display=swap" rel="stylesheet"> */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Sacramento&family=WindSong:wght@500&display=swap');

/* font-family: 'Montserrat', sans-serif;
font-family: 'Sacramento', cursive;
font-family: 'WindSong', cursive; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: fff;
  /* overflow-x: hidden; */
  min-height: 100vh;
}
header {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  color: black;
  font-weight: 700;
  font-size: 2em;
  text-decoration: none;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.navigation li {
  list-style: none;
}

.navigation li a {
  text-decoration: none;
  padding: 6px 15px;
  color: #112434;
  border-radius: 20px;
}

.navigation li a:hover,
.navigation li a.active {
  background-color: #112434;
  color: #fff;
}

.parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.parallax img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
#text {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  font-size: 4em;
  font-family: 'WindSong', cursive;
  color: rgb(14, 4, 86);
}

.sec {
  position: relative;
  padding: 100px;
  background: #112434;
}

.sec h2 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
}

.sec p {
  font-size: 1.2em;
  color: #fff;
  font-weight: 300;
}

.avatar {
  height: 100px;
}
