body {
    background-color: rgb(255, 245, 234);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;   
    display: flex;
    margin: 0;
}

img {
    height: 750px;
    width: 230px;
    flex-shrink: 0;
}

.begin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    font-size: 18px;
    font-weight: 200
}

.home{
    display: flex;
    gap: 20px
}

.header {
    border-radius: 8px;
    margin: 20px auto;
    padding: 50px 100px 100px 100px;
    width: 50%;
    background-image: url("https://t3.ftcdn.net/jpg/02/52/12/40/360_F_252124067_aCtp9ZD934RboKmjJzkXiwYDL7XkNjpn.jpg");
    background-position: center;
    background-size: cover;
}

h1 {
    color: rgb(255, 255, 255);
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 0;
}

p {
    font-size: 25px;
    color: rgb(0, 0, 0);
    font-weight: 800;
}

.links {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 50px 50px 0 10px;
}

li {
    list-style: none;
}

.recipes {
    padding: 60px;
    border-radius: 300px;
    box-shadow: 2px 4px 16px rgba(0,0,0,.2);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 900;
    font-size: 25px;
}

.rice{
    background-image: url("./images/jollof-rice.jpg");
    background-position: center;
    background-size: cover;
}

.spag{
    background-image: url("./images/spag.webp");
    background-position: center;
    background-size: cover;
}

.stew{
    background-image: url("./images/stew.jpeg");
    background-position: center;
    background-size: cover;
}

a {
    text-decoration: none;
    color: rgb(255, 225, 225);
}