@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Raleway:wght@400;500;600&family=Roboto:wght@300;400&display=swap');

html{
    font-size: 10px;
    overflow-x: hidden;
}

:root{
    --green-1: #361414;
	--green-2: #973b44;
	--lightGreen-2: #dac6c7;
	--lightGreen-1: #b69193;
	--black-1: #3b413a;
	--black-2: #000000;
	--black-3: #5b6359;
	--white-1: #e8e8e8;
}

body{
    background-color: var(--lightGreen-2);
    overflow-x: hidden;
}

section{
    padding: 100px 0;
}

@media only screen and (max-width: 768px){
    section{
        padding: 50px 0;
    }
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}

p{
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.8rem;
    font-size: 1.8rem;
}

a{
    display: inline-block;
    text-decoration: none;
}