<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --eco: #2F5D3A;
}

body{
    background-color: #F9F9F9;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 20px;
}

.nav-item:hover{
    background-color: var(--eco);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

h1{
    padding: 0.5rem;
    color: white;
    font-size: clamp(20px, 2vw, 25px);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
}

h2{
    color: white;
    font-size: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
}

h3{
    margin: 0; 
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
    padding: 3px;
}

#big-picture{
    background-image: url(assets/landscape.png);
    background-attachment: fixed;
    background-size:auto;
    height: 80vh;
    width: 100%;
}

.logo{
    cursor: pointer;
    display: flex;
    flex-direction: row;
}

.footer{
    width: 100%;
    background-color: black;
    position: relative;
}

.content{
    width: 50%;
    position: relative;
    left: 25%;
    height: calc(100% - 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn{
    margin-top: 3rem;
    background-color: var(--eco);
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: 120px;
    height: 50px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.btn:hover{
    background-color: #4CAF50;
}

.btn:active{
    background-color: #166d2c;
}

.cards{
    display: flex;
    justify-content: center;
    padding: 3px;
}

.card{
    border: 3px solid black;
    width: 250px;
    height:200px;
}

.header{
    color: #2F5D3A; 
    font-family: sans-serif; 
    text-align: center; 
    margin-top: 20px; 
    font-size: 45px;
}

.text{
    color: #333333; 
    font-weight: 100; 
    text-align: center; 
    font-size: 30px;
    margin-bottom: 30px;
}

.paragraph{
    color: #4f4f4f; 
    font-weight: 100; 
    text-align: center; 
    font-size: 30px;
    margin-bottom: 30px;
}

.service{
    display: flex; 
    flex-direction: column; 
    align-items: center;
    padding: 15px;
    transition: 0.3s;
    width: 20%;
}

.service:hover{
    background-color: rgba(192, 190, 190, 0.232);
    border-radius: 10px;
    transition: 0.3s;
}

.services{
    display: flex; 
    justify-content: space-evenly; 
    width: 100%;
}

@media (max-width: 700px) {
    .services{
        flex-direction: column;
    }
}
</pre></body></html>