@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fs-h2: clamp(1.8rem, 1.4rem + 2vw, 3.125rem);
    --fs-h1: clamp(2.4rem, 1.6rem + 4.2vw, 5rem);
    --fs-body: clamp(0.92rem, 0.85rem + 0.35vw, 1.05rem);
    --lh-body: clamp(1.45rem, 1.2rem + 1vw, 1.75rem);
}

body {
    background-color: #0F0F0F;
    height: 100vh;
}

main {
    background-image: url('./images/hot-coffee-pouring-background.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100vh;
    font-family: 'Poppins';
    display: flex;
    justify-content: start;
    align-items: center;
    padding: clamp(20px, 7vw, 100px);
}

.hero-section {
    /* padding: 20px; */
    max-width: 700px;
}

.content-wrapper {
    color: white;
}

.content-wrapper img {
    width: clamp(220px, 34vw, 300px);
    /* margin-bottom: 20px; */
    height: auto;
}

.content-wrapper h2 {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: var(--fs-h2);
    text-shadow: 0px 130px 36px rgba(0, 0, 0, 0.01), 0px 83px 33px rgba(0, 0, 0, 0.07), 0px 47px 28px rgba(0, 0, 0, 0.25), 0px 21px 21px rgba(0, 0, 0, 0.43), 0px 5px 11px rgba(0, 0, 0, 0.49);
}

.content-wrapper h1 {
    margin: 0;

    font-style: italic;
    font-weight: 500;
    font-size: var(--fs-h1);
    background: linear-gradient(120.95deg, #856220 14.44%, #F4E683 35.13%, #BF923D 52.05%, #F1EA82 89.67%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.content-wrapper p {
    font-style: normal;
    font-weight: 500;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}


@media (max-width: 768px) {

    main {
        background-position: 68% bottom;
    }

    .content-wrapper h1,
    .content-wrapper img {
        margin-bottom: 20px;
    }

}


/* new added */
@media (min-width: 1024px) {
    main {
        padding-top: 30px;
    }
}
