*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #0D0D0D;
    display: flex;
    flex-direction: column;
}   

html, body{
    width: 100% !important;
    overflow-x: hidden !important;
}

.header{
    display: flex;
    align-items: center;
    padding: 20px 50px;
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.logo{
    display: flex;
    align-items: center;
    flex-direction: row;
}

.logo h3{
    color: #C4913D;
    cursor: default;
}

.logo img{
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    transition: all 0.3s;
}

.nav a:hover{
    color: #BFA76F;
}

.nav a{
    color: #A8A8A8;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s;
}

.container-home{
    padding: 0px 100px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding-top: 14%;
    padding-bottom: 13%;
    padding-left: 15%;
    width: 100%;
}

.bg-img{
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    background-image: url('../img/passive-tree.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container-home img{
    height: 100%;
    max-height: 460px;
    width: auto ;
    padding-left: 23%;
}

.about{
    display: flex;
    flex-direction: column;
    max-width: min(500px, 60%);
}

.about h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: #BFA76F;
    margin-bottom: 20px;
    cursor: default;
}

.about p{
    font-size: 1.1rem;
    color: #A8A8A8;
    margin-bottom: 20px;
    cursor: default;
}

.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 26%;
}

.contact h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: #BFA76F;
}

.contact p{
    font-size: 1rem;
    color: #A8A8A8;
    margin-bottom: 20px;
}

.contact-form form{ 
    max-width:420px;
    margin:50px auto; 
}

.feedback-input{
    color:white;
    font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent;
    border:2px solid #A8A8A8;
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width:100%;
    box-sizing: border-box;
    outline:0;
}

.feedback-input:focus{ 
    border:2px solid #fff; 
}

.contact-form textarea{ 
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

.submit{
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    width: 100%;
    background:#fff;
    border-radius:5px;
    border:0;
    cursor:pointer;
    color:222;
    font-size:24px;
    padding-top:10px;
    padding-bottom:10px;
    transition: all 0.3s;
    margin-top:-4px;
    font-weight:700;
}
.submit:hover{ 
    background:#BFA76F; 
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    margin-top: 4%;
    width: 100%;
    z-index: 1;
    bottom: 0;
    font-size: 16px;
}

.cookies{
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #A8A8A8;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px;
}

.cookies p{
    color: #0D0D0D;
    font-size: 1rem;
    margin: 10px;
    text-align: center;
}

.cookies-buttons button{
    cursor: pointer;
    width: 80px;
    height: 40px;
    margin: 10px;
    margin-bottom: 0;
    margin-top: 0;
}

@media screen and (max-width: 500px){
    .header{
        position: fixed;
        top: 0;
        padding: 10px 20px;
    }

    .container-home{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 55% 0 50% 0;
        margin-left: 20%;
        margin-right: 15%;
        width: 95%;
    }

    .container-home img{
        display: none;
    }

    .about h1{
        font-size: 1.6rem;
    }

    .about p{
        font-size: 0.8rem;
    }

    .contact h1{
        font-size: 1.6rem;
    }

    .feedback-input{
        width: 90%;
        font: 16px;
    }

    .contact-form form{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .submit{
        width: 100%;
        margin: 6px;
    }

    .cookies{
        margin: 0;
        height: 140px;
    }
}