*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

html,
body {
    height: 100%;
}

body {
    background-color: #FAF9F6;
    overflow-x: hidden;
}

:root {
    --main-color: black;
    --secondary-color: #339f0d;
    --third-color: #d7ebcf;
}

section {
    padding: 5%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border-radius: 50px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
    /* border-bottom: 1px solid var(--main-color); */
}

.logo {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo img {
    width: 100%;
}


.links {
    list-style: none;
    justify-content: center;
    font-size: 1.5rem;
    padding: 1rem;
}

.links a {
    color: var(--main-color);
    text-decoration: none;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

h1 {
    font-size: 2.25rem;
    line-height: 125%;
    padding: 0rem 0rem;
}

h2 {
    font-size: 2rem;
    line-height: 125%;
    padding: 0rem 0rem;
}


h3 {
    font-size: 1.25rem;
    line-height: 125%;
}

#call {
    padding: 1%;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}


.call {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 1rem 0;
    background-color: var(--third-color);
    border: 2px solid var(--third-color);
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: var(--secondary-color);
    max-width: 85%;
}

.packages {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 1rem 0;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    max-width: 85%;
    margin-top: 2rem;
}

.packages p {
    font-size: 1.25rem;
    line-height: 120%;
    padding: 1.25rem 0rem;
}


#package {
    padding: 1%;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    
}

.packages h2 {
    color: var(--secondary-color);
}

.packages p {
    font-size: 1.25rem;
    line-height: 120%;
    padding: 1.25rem 0rem;
}




