
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap');


  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background: linear-gradient(#040228 0%, #0075c7 40%);
    min-height: 100vh;
    overflow-x: hidden;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }

  .logo {
    color: #fff;
    font-size: 2em;
    cursor: default;

  }

  .navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;

  }

  .navbar a:hover,
  .navbar a.active {
    background: #00a3b9;
  }

  .parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

  }

  .parallax img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    
  }

  .sec {
    position: relative;
    padding: 100px;
    background: #040228;
  }

  .sec h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
  }

  .sec h2:nth-child(2) {
    font-size: 2em;

  }

  .sec p {
    color: #fff;
    font-size: 1em;
    font-weight: 300;
  }