* {
    margin: 0px;
    padding: 0px;
}
body {
    background-color: rgb(212, 207, 207);
    font-family: 'Times New Roman', Times, serif;
}
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;
}
header {
    display: block;
    width: 100%;
    background-color: rgba(111, 241, 30, 0.956);
}
#menue {
    width: 40%;
    padding: 20px;
    border: 0px solid;
    height: 100%;
}

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;
}
.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%;
    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%;
    }
}
.input{                 /* Left side on desktop */
    width: 70%;                /* Fixed width for desktop */
    padding: 20px;
    margin: 10px auto;
    background-color: #f9fbff;
    border: 1px solid #a2b8e1;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.input label {
    display: block;
    margin-top: 12px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #34495e;
}

/* Inputs and Select box */
.input input[type="text"],input[type="password"],.input button,input[type="number"],select{
    width: 95%;
    padding: 10px;
    border: 1px solid #cfd6e4;
    border-radius: 15px;
    font-size: 14px;
}
.input button{
    width: 99%;
    margin-top: 10px;
    background-color: rgba(111, 241, 30, 0.956);
    color: white;
}
.input button:hover{
    background-color: white;
    color: rgba(30, 100, 241, 0.866);
}

/* Focus Effect */
.input input:focus{
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 4px rgba(74,144,226,0.4);
}
.input input[type="number"]:focus{
    #warn{
        display: block;
    }
}