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

a{
    color: white;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
}


body{
    background-image: url(/Images/green-bg.jpg);
    background-size: cover;
    background-repeat: repeat;
    color: white;
}

#Kezdőlap{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) ), url(/Images/ginek.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.container{
    padding: 10px 2%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo{
    width: 140px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 35px;
}
@media only screen and (max-width: 1200px){
    nav ul li{
        margin: 10px 20px;
    }
}
@media only screen and (max-width: 1100px){
    nav ul li{
        margin: 10px 15px;
    }
}
@media only screen and (max-width: 970px){
    nav ul li{
        margin: 10px 10px;
    }
}
@media only screen and (max-width: 950px){
    nav ul li{
        margin: 10px 10px;
    }
    .footernav{
        display: none;
    }
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 25px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: goldenrod;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width:100%;
}
.header-text{
    margin-top: 10%;
}

.header-text p{
    margin-top: 50px;
    font-size: 40px;
}
.header-text h1{
    font-size: 60px;
    margin-top: 50px;
}
.header-text h1 span{
    color: goldenrod;
}

#menu-icon{
    color: white;
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}

.footernav{
    display: block;
    padding-bottom: 15px;
}

.center li{
    padding: 0 20px;
}

nav .fas{
    display: none;
    font: 25px;
}

