body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #f0f2f5;
    background: #c9c9c9;
	background-image: url(https://saribelen.kalkanyemek.com/siparis/food.webp);
	background-size: cover;
    background-position: center;
    margin: 0px;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.container {
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgb(0 0 0 / 75%);
    color: #ffffff;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

img {
    display:block;
    margin:0 auto;
    width:95%;
    max-width:200px;
    margin-bottom:10px}

h1 {
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    color: #3c965e;
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

input[type="text"] {
    width: calc(100% - 24px);
    padding: 10px;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    border: 3px solid #3c965e;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    background-color: #3c965e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #128C7E;
}

.hidden {
    display: none;
}

#permission-message {
    margin: 5px;
    padding: 10px;
    background-color: #000000;
    border-left: 5px solid #bc0d00;
    color: #000;
    border-radius: 5px;
    text-align: center;
}

#permission-text {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer {
    text-align: center;
    margin-top: 40px;
}

.footer p {
    margin: 0;
}

.footer a {
    text-decoration: none;
    font-weight: bold;
    color: #0093ff;
}

.footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    img {
        width: 100%;
        max-width: 200px;
    }
}