/* behind the scene*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
    --black:#13262F;
    --green:#14700B;
    --brown:#56290C;
    --gray:#A1B0Ab;
    --white:#E0E0CE;
    --line: 2px solid #14700B;
}
html{
    scroll-behavior: smooth;
    font-family: "Inter", serif;
    font-weight: 400;
    font-style: normal;
}
body{
    margin: 0;
    background-color: var(--white);
}
a{
    text-decoration: none;
    color: var(--brown);
    font-size: clamp(1rem,3vw,2rem);
    transition: color .225s linear;
}
a:hover{
    color: var(--gray);
}
/* Header */
header{
    height: 100dvh;
    background-color: var(--gray);
}
.logoContainer{
    width: 100%;
    height: 20%;
    display: flex;
}
.logoContainer p{
    font-size: clamp(1rem,2vw,3rem);
    width:100%;
    color: var(--black);
    display: flex;    
    justify-content: center;
    align-items: center;
}
.logoLink img{
    height: 100%;
}
.heroImage{
    height: 70%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: clamp(1.5rem,2vw,3rem);
    background: url("cutDownTree.jpeg");
    background-size: 220%;
    background-attachment: fixed;
    background-position: 70% 50%;
    box-shadow: inset 0 0 0 10000px  rgba(0, 0, 0, 0.452);
    background-repeat: no-repeat;
}
.heroImage p{
    width: 70%;
}
header nav{
    height: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--white);
}
header nav a{
    border-right: var(--line);
    border-left: var(--line);
    padding: 0 20px;
}

@media screen and (max-width: 600px) {
    .heroImage{
        background-size: 370%;
    }
    header nav{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    header nav a{
        border: 0px;
    }
}

/* Main */
main{
    height: 130dvh;
}
#priser{
    display: flex;
    justify-content: space-around;
    font-size: clamp(1rem,2vw,2rem);
    align-items: center;
    height: 100dvh;
    margin: 0 20px;


}
.priser{
    border-right: var(--line);
    width: 50%;
    height: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.serviceInfo{
    height: 70%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.serviceInfo p{
    width: 70%;
}

/* Footer */
footer{
    height: 100dvh;
    background-color: var(--gray);
}

footer img{
    width: 200px;
}