/* -- Import Font -- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* -- Basic CSS -- */
::-webkit-scrollbar {
    display: none;
}
:root {
    --bg: #E6E2E2;
    --text-b: #1E1E1E;
    --text-w: #E6E2E2;
    --element-m: #2CA194;
    --element-l: #1E6761;
    --active: #6DBE45;
    --hover: #F0B559;
    /* -- */
    --size-m: 1rem;
    --size-l: 1.5rem;
    --size-xl: 2rem;
    /* -- */
    --radius: 1rem;
    --transition: all 0.4s ease-in-out;
    /* -- */
    --shadow-b: 0px 0px 4px 1px rgba(30, 30, 30, 0.2);
    --shadow-g: 0px 0px 4px 1px rgba(57, 70, 46, 0.4);
}
/* -- General CSS -- */
* {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6, p {
    font-weight: 400;
    letter-spacing: 0.04em;
    font-family: "Montserrat", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    line-height: 3rem;
}

p {
    font-size: 1rem;
    line-height: 2rem;
}

ul,li {
    list-style-type: none;
}

button,a {
    border: none;
    cursor: pointer;
    text-decoration: none;
    /* -- */
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.04em;
    font-family: "Montserrat", sans-serif;
}

/* -- -- */
body {
    width: 100%;
    height: 100%;
    /* -- */
    color: var(--text-b);
    background: var(--bg);
    font-family: "Montserrat", sans-serif;
    /* -- */
    display: flex;
    flex-direction: column;
    
}
/* -- -- */
.section {
    width: 100%;
}
    .container {
        display: flex;
    }