/* Global Style */
* {
  box-sizing: border-box;
  font-family: Roboto;
  font-size: large;
  font-weight: bold;
  text-decoration: none;}
  
  a {color: white;}

body {
background-color: #000000;
margin: 0;
padding: 0;
background-image: url(https://saribelen.kalkanyemek.com/siparis/food.webp);
background-size: cover;
background-position: center;
background-repeat: no-repeat;}
  
p {
    display: block;
    text-align: justify;
    padding: 8px;
    font-style: inherit;
    color: yellow;}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  color: #ffffff;
  background-color: rgb(0 0 0 / 50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    display: block;
    font-weight: bold;
    font-size: xx-large;
    text-align: center;
    background: #ffffff;
    color: #000000;
    border-radius: 5px;
    width: 100%;
    padding: 10px;}
	
img {
    display:block;
    margin:0 auto;
    width:100%;
    max-width:200px;
    margin-bottom:20px}
    
h2 {text-align: center;margin: 1px;}

.uyari-notu {
	color: #ffffff;
    background-color: #001412;
    border: 4px solid #003c36;
    border-radius:  5px;
    margin-bottom: 10px;
    padding: 5px;
	font-weight: bold;
    zoom: 0.85;}

/* Instagram */
.takip-et {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;}
	
.takip-et p {
	color: #fff;
    margin-bottom: 10px;}

.takip-et img {
    width: 25px;
    margin: 5px;}
  
.takip-et a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 1px;
    cursor: pointer;
	font-size: larger;
    font-weight: bold;
    text-decoration: none;
	width: 100%;
}

.takip-et a:hover {
color: #fff;
background-color: #000;
}

/* Form Style */
form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #f2f2f2;
}

select {
  height: 50px;
}

input[type="submit"] {
  padding: 15px 20px;
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

input[type="submit"]:hover {
  background-color: #026459;
}

/* Media Query */
@media (max-width: 500px) {
  .container {
    max-width: 98%;
	font-size: 21px;
    padding: 15px;}
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  button[type="submit"] {
    font-size: 21px;
	font-weight: bold;
	border: 2px solid #fc0000;
    padding: 9px;
  }
}