body {
    color: rgb(3, 3, 3);
    text-align: center;
    /* width: 1400px; */
    /* background-image: url("/background2.png");
    background-position: center;
    background-size: cover; */
    font-family: 'Yanone Kaffeesatz', sans-serif;
    position: relative;
}

nav {
    background-image: url("./background3.png");;
    height: 100px;
    background-position: center;
    background-size: cover; 
    opacity: .8;
    position: sticky;
    top: 3px;
}
.navlinks{
    overflow: hidden;
    color: black;
}

.dropdown {
    float: left;
    overflow: hidden;
  }

.dropdown .dropbtn {
    font-size: 22px;  
    font-weight: bold;
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 10px 12px;
    background-color: rgba(254, 254, 254, 0.8);
    font-family: inherit;
    margin: 0;
  }

.dropbtn:hover {
    background-color: white;
    font-size: 25px;
}
.links {
    color: black;
    font-weight: bold;
    font-size: 22px;
    background-color:rgba(254, 254, 254, 0.8);
    text-decoration: underline; 
}

.links:hover {
    background-color: white;
    font-size: 25px;

}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
.dropdown-content a:hover {
    background-color: #ddd;
  }
.dropdown:hover .dropdown-content {
    display: block;
  }
p {
    color: black;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    font-size: 18px;
}

.showUl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

li {
    list-style-type: none;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    /* border: 2px solid red; */
    width: 400px;
    align-items: center;
    background-color: white;
    list-style-type: circle;
}

.indexItem {
    margin-bottom: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 5px;
}

h2 {
    text-transform: capitalize;
}

img {
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    border-radius: 5px;
    margin-bottom: 10px;
    width: 350px;
    height: 250px;
}

.showPage {
    display: flex;
    flex-direction: row;
    justify-content: center; 
    gap: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: 1200px;
    text-align: center;
     /* margin-left: 50px;  */
} 
.centerPage {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.leftPart {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    color: black;
    margin-top: 0;
    margin-left: 10px;
    padding: 0;
}

.rightPart {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-right: 20px;
    line-height: 25px;
    align-items: center;
    text-align: left;
    color: black;
}

.ingredient  {
    color: red;
}

.editButton {
    /* border: 1px solid rgb(129, 129, 129);
    padding: 8px;
    border-radius: 5px; */
    margin-right: 15px;
    margin-top: 10px;
}

.formStyle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type=text],[type=password] {
    padding:8px  35px;
    margin: 8px 0;
    box-sizing: border-box;
}

input[type=text]:focus {
    border: 3px solid #555;
  }
input[type=password]:focus {
    border: 3px solid #555;
  }

  textarea {
    width: 50%;
    height: 200px;
    /* padding: 12px 20px; */
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
    margin-bottom: 10px;
  }

input[type=submit] {
    background-color: white;
    border-radius: 8px;
    color: black;
    padding: 10px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
  }

  input[type=submit]:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }

/* Big screen devices (889px and above) */
@media only screen and (min-width: 780px) and (max-width: 890px) {
    ul {
        justify-content: center;
    }
    .showPage {
        flex-direction: column;
    }
  }
  
  /* Medium screen devices (768px and above) */
  @media only screen and (max-width: 780px) {
    ul {
        justify-content: center;
    }

    .showPage {
        flex-direction: column;
    }

    .showUl {
        flex-direction: column;
    }
  }
  
  /* Small screen devices (600px and above) */
  @media only screen and (max-width: 500px) {
    ul {
        justify-content: center;
    }

    .showPage {
        flex-direction: column;
    }

    .showUl {
        flex-direction: column;
    }
   
  }
  