@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body{
    overflow-x: hidden;
    background: rgb(255, 255, 255);
    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: 999;
}

.logo{
    color: #111111;
    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: #111111;
    border-radius: 20px;
}

.navigation li a:hover,
.navigation li a.active{
    background: #111111;
    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: 50%;
    transform: translateY(-50%);
    font-size: 2.5em;
    color: #111111;
}

.sec{
    position: absolute;
    padding: 100px;
    background: #111111;
}

.sec p{
    color: #fff;
    font-size: 1em;
    font-weight: 400;
}

.sec h2{
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}