* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
   background-color: whitesmoke; 
}

html, body {
    height: 100%;
    margin: 0;
}
h1 {
    background-color: black ;
    color: white;
    text-align: center;
}
#ulindex li {
    font-size: 40px;
    text-align:  center;
    list-style-type: none;
    padding: 20; /* Remove default padding */
    margin: 20; /* Remove default margin */


    
}

.back-button {
    background-color: red;
    color: white;
    font-size: 20px;
     
}
.recipelist a {
    display: block;
    width: 500px; /* Adjust width as needed */
    padding: 20px;
    text-align: center;
    background-color: #FFFAFA;
    color: black;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px; /* Optional: Adds rounded corners */
    
}
.recipelist li {
    display: inline-block; /* Makes list items display inline-block */
    margin: 10px; /* Adds space between the list items */
    font-size: 25px;
}
.recipelist a:hover {
    background-color: rgba(128, 128, 128, 0.176); /* Optional: Change background color on hover */
}
.container {
    width: 800px;
    margin: 0 auto;
}
.recipe-card {
    width: 800px; /* 2 + 50 + 400 + 50 + 2 */
    text-align: center;
    background-color: #FFFAFA;
    margin: 20px auto;
    padding: 50px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .5); 
}

.recipe-content {
    text-align: left;
    padding: 20px;
}

.recipe-card h2,
.recipe-card a {
    text-transform: uppercase;
}

.recipe-card.feature {
    border: 2px solid darkred;
}


.recipe-card a {
    background-color: #fc9400;
    color: #fff;
    text-decoration: none;
    margin: 20px;
    padding: 10px 12px;
}
.recipe-ing{
    background-color: whitesmoke;
    color: black;
    text-decoration: none;
    margin: 20px;
    padding: 10px 12px;
    font-size: 20px;
}