* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: rgb(212, 207, 207);
    font-family: 'Times New Roman', Times, serif;
}

header {
    display: block;
    width: 100%;
    background-color: rgba(111, 241, 30, 0.956);
}

header h1 {
    color: white;
    text-align: center;
    font-size: 200%;
}

.menue {
    display: block;
    width: 2.5%;
    padding: 5px;
    margin: 2px;
}

.menue:hover {
    background-color: white;
    border-radius: 5px;
}

h2 {
    color: rgba(30, 100, 241, 0.866);
    text-align: center;
}

#menue {
    width: 40%;
    padding: 20px;
    border: 0px solid;
    height: 100%;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    padding: 4px;
}

nav ul li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: rgb(70, 69, 69);
    font-family: 'Times New Roman', Times, serif;
}

nav ul li a:hover {
    background-color: gray;
    color: white;
}
.container-search{
    display: flex;
    margin: 10px 10px 10px 10px;
    background-color: white;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.54);
}
#search-input{
    padding: 12px 18px;
    font-size: 16px;
    width:90%;
    border-radius: 40px;
    border: none;
}
.search-btn {
    border: none;
    outline: none;
    padding: 12px 22px;
    background: #4CAF50;
    color: white;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    margin: auto;
}
.search-btn:hover {
    background: #45a049;
}
#search-input:focus{
    border: none;
    outline: none;
}
.container-bgi{
    display: block;
    margin: 20px 10px 10px 10px;
    background-color: white;
    padding: 10px;
    border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.54);
}
.container-bgi img{
    display: block;
    width: 25%;
    margin: auto;
    border-radius: 20px;
}
.container-bgi h2,p{
    text-align: center;
    font-size: large;
    margin: 20px;
    color: gray;
}
.container-bgi h2{
    color: black;
    font-size: 200%;
}.ql {
    display: flex;
    background-color: white;
    width: 100%;
    border-radius: 5px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}
.ql,
footer {
    display: flex;
    flex-direction: column;
    width:100%;
    padding-top: 10px;
    background-color: rgba(111, 241, 30, 0.956);
    text-align: center;
}

.ql ul li {
    list-style-type: none;
}

footer {
    background-color: black;
    color: white;
    margin-top: 2px;
}
@media screen and (max-width:251px) {
    header h1 {
        font-size: medium;
    }

    .menue {
        width: 5%;
    }
}

@media screen and (max-width:177px) {

    h2,
    p,
    h1 {
        font-size: small;
    }
}

@media screen and (max-width:122px) {
    body {
        font-size: 15%;
    }
}