body{
    margin: 0;
    background-image: url(hátterek/bemutatkozas.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: Verdana;
}
li{
    list-style: none;
}


a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 20px 20px;
    background-color: grey;
    border-radius: 10px;
    transition: 0.4s;
    border-width: 3px;
    border: black solid;
    
}
a:hover{
    background-color:dimgray;
    font-size: 28px;
    transition: 0.4s;
}
a.kics{
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 20px 20px;
    background-color: grey;
    border-radius: 10px;
    transition: 0.4s;
    border-width: 3px;
    border: black solid;
}
a.kics:hover{
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 20px 20px;
    background-color: orange;
    border-radius: 10px;
    transition: 0.4s;
    border-width: 3px;
    border: black solid;
}
header{
    position: relative;
    

}
.navbar{
    width: 100%;
    height: 98px;
    
    margin: 0 auto;
    display: flex;
    margin-top: 40px;
    justify-content:center;
}

.navbar .links{
    display: flex;
    gap: 2rem;

    
    
}
.navbar .links .active{
    background-color: orange;

    transition: 0.4s;
    
}
.navbar .dropdown_menu .active{
    background-color: orange;

    transition: 0.4s;
    
}
.navbar .toggle_button{
    font-size: 4rem;
    display: none;
    cursor: pointer;
    color:orange;
    -webkit-text-stroke: 3px black;
    
}

@media (max-width: 1650px){
    .navbar .links{
        display: none;
    }
    .navbar .toggle_button{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
}

.dropdown_menu{
    display: block;
    position: absolute;
    background-color: rgb(206, 206, 206);
    border-radius: 50px;
    
    top: 70px;
    width: 400px;
    z-index: 1;
    overflow: hidden;
    
    height: 0;
    transition: height 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    
}

.dropdown_menu li{
    padding: 0.7rem;

    display: flex;
    align-items: center;
    justify-content: center;

}
.dropdown_menu.open{
    height: 750px;
    border: black solid;
    
}

@media (max-width: 576px) {
    .dropdown_menu{   
        width: unset;
    }

}
p{
    font-size: 20px;
    width: 100%;
    color: orange;
    -webkit-text-stroke: 1px black;
    font-weight: bold; 
    text-justify: auto;
}


.csalad{
    width: 300px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    border: 1.5px black solid;
    float: right;
    margin: 20px;
}
.logo{
    width: 300px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    border: 1.5px black solid;
    text-align: center;
    margin: 20px;
    float: left;
}
.Gaga{
    width: 100px;
    float: left;
    margin: 0 20px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    border: 1.5px black solid;
}

.elemek{
    padding: 10px;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(255, 255, 255, 0.85);
    margin: 0 10%;
}
.csalad{
    width: 80%;
}
.logo{
    width: 60%;
}

@media (min-width: 976px) {
    p{
        font-size: 1.5vw;
        color: orange;
        -webkit-text-stroke: 1px black;
        font-weight: bold;

    }
    .csalad{
        width: 30vw;
    }
    .logo{
        width: 30vw;
    }
    .Gaga{
        width: 10vw;
    }

}

span{
    color: blue;
}