@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #fff;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 10000;
}

section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

section img#man {
    transform-origin: bottom;
}

#text {
    position: relative;
    color: #ffffff;
    font-size: 11vw;
}

.sec {
    position: relative;
    padding: 140px;
}

.sec h2 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #20496a;
}

.sec p {
    font-size: 1.2em;
    color: #20496a;
}