:root {
    --orange: #FF6632;
    --lightorange: #FF9232;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    font-family: 'Inter', normal;
}

h1 {
    display: none;
}

h2 {
    color: white;
    font-weight: 400;
    font-size: 40px;
    max-width: 380px;
}

h2 span {
    color: var(--lightorange);
}

h3 {
    font-size: 34px;
    font-weight: 500;
    color: black;
    margin-bottom: 50px;
}

h4 {
    font-size: 18px;
    font-weight: 300;
    color: black;
    margin-bottom: 30px;
}

h5, h6 {
    font-size: 20px;
    font-weight: 400;
    color: black;
}

h6 {
    margin-top: 20px;
}
p {
    font-size: 16px;
    font-weight: 300;
}

.playfair {
    font-family: 'Playfair Display', italic;
}

.italic {
    font-style: italic;
}

.orange {
    color: var(--orange);
}

@media screen and (min-width: 400px) {
    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 40px;
    }

    h4 {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) {
    h2 {
        font-size: 60px;
        max-width: 500px;
    }

    h3 {
        font-size: 50px;
    }

    h4 {
        font-size: 22px;
    }
}

@media screen and (min-width: 1024px) {
    h2 {
        font-size: 70px;
        max-width: 600px;
    }

    h3 {
        font-size: 54px;
    }

    h4 {
        font-size: 22px;
    }
}