*{
    /* font-family: sans-serif; */
    margin: 0;
    padding: 0;
}

:root {
    --clr-text: #dadada;
    --clr-primary: #067e0a;
    --clr-primary-dark: #125814;
    --clr-accent: #613b6b;
    --clr-accent-dark: #44264d;

    --ff-title: "BFNarrow", sans-serif ;
    --ff-serif: "Crimson Text", serif;
    --ff-logo: "BetterFly", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html{
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-size: 1.25rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    margin: 0;
    text-align: center;
    color: var(--clr-text);
    background: #000000;
}

img{
    display: block;
    max-width: 100%;
    margin: auto;
    max-height: 70vh;
}

h2{
    color: var(--clr-text);
}

nav{
    width: 100%;
    padding: 0.7rem;
    position: fixed;
    background-color: #000000;
    display: grid;
    justify-content: center;
}

nav ul{
    display: flex;
    column-gap: 0.5em;
}

nav ul li{
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 350;
    font-size: larger;
}

nav ul li a:hover, nav ul li a:focus{
    text-decoration: underline;
    color: inherit;
}

.banner{
    padding-top: 3em;
}

.pro{
    text-align: center;
    padding: 2em 1.25em 0 1.25em;
}

.pro h2 span{
    color: rgb(235, 230, 188);
    cursor: pointer;
}

@media screen and (min-width: 400px) {
    .banner{
        padding-top: 2em;
    }
    
    .pro{
        width: 60%;
        margin: auto;
        padding: 0 0 2em 0;
    }
    
}

@media screen and (max-width: 375px) {
    .pro h2{
        font-size: larger;
    }

    nav ul li a{
        font-size: large;
    }

    input{
        width: 100%;
    }

    .services{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    justify-content: center;
    margin: auto;
    margin-bottom: 50px;
    }

    .contacttop{
        justify-self: center;
        padding: 0;
    }
}

@media screen and (min-width: 375px) {
    .services{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    justify-content: center;
    margin: auto;
    margin-bottom: 50px;
    }

    .contacttop{
        justify-self: center;
        padding: 0 0.5em 0.5em 0.5em;
    }
}

.pro h2{
    font-weight: 350;
}

.serv{
    padding: 3em;
}

.service{
    padding: 1.5em 1.5em 1.5em 1.5em;
    border: 1px solid var(--clr-text);
    border-radius: 25px;
    align-content: center;
}

.service .link{
    text-decoration: none;
    color: inherit;
}

.service .link:hover, .service .link:focus{
    text-decoration: underline;
    color: inherit;
}

.line{
    width: 90%;
    border: 1px solid var(--clr-text);
    justify-self: center;
    margin: 0.7em 0 0.7em 0;
}

.service a button{
    width: 45%;
    height: 1.7rem;
    color: #000000;
    background-color: var(--clr-text);
    border: none;
    border-radius: 8px;
    margin-top: 1.5em;
    margin-bottom: 1em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.service a button:hover, .service button:focus{
    color: var(--clr-text);
    background-color: #000000;
    border: 1px solid var(--clr-text);
    transition: all ease 1s;
}

.con{
    padding: 1em 3em 3em 3em;
}

.contacttop h4{
    padding: 0 1.5em 1.5em 1.5em;
    font-weight: 500;
}

input{
    background-color: var(--clr-text);
    border: none;
    height: 2.5em;
    width: 70%;
    margin-bottom: 0.7em;
    border-radius: 8px;
}

input::placeholder{
    padding: 0.2em;
}

textarea::placeholder{
    padding: 0.2em;
}

.send{
    width: 7em;
    height: 1.7rem;
    color: #000000;
    background-color: var(--clr-text);
    border: none;
    border-radius: 8px;
    margin-top: 0.5em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.send:hover, .send:focus{
    color: var(--clr-text);
    background-color: #000000;
    border: 1px solid var(--clr-text);
    transition: all ease 1s;
}

.contactbottom{
    padding: 1em;
}

.contactbottom ul{
    display: flex;
    column-gap: 0.5em;
    justify-self: center;
}

.contactbottom ul li{
    list-style: none;
}

.contactbottom ul li a{
    text-decoration: none;
    color: var(--clr-text);
    font-weight: 350;
    font-size: large;
}

h6{
    font-weight: 300;
    font-size: small;
}