*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

:root{
    --deep-dark: #0E0504;
    --dark: #4B1F0E;
    --off-white: #EEE2DC;
    --medium: #794028;
    --medium-light: #A07855FF;
    --light-coffee: #F2EBE6;
    --light: #DFCDC0;
}

.inner-body{
    width: 100%;
    min-height: 150vh;
    padding: 50px;
    background-image: url(../img/home/fill004.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: 'Gayathri', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.inner-body h1{
    font-weight: 700;
    font-size: 3rem;
    color: var(--dark);
}

.txt-box{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.txt-box p{
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 2rem;
    color: var(--dark);
}

@media screen and (max-width: 500px){
    .inner-body{
        gap: 1.2rem;
    }

    .inner-body h1{
        font-size: 2rem;
    }

    .txt-box{
        gap: 1.2rem;
    }

    .txt-box p{
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}
