body {
    font-family: 'Open Sans', sans-serif; /* is the default font like ragebait to make you add a custom one? screw you google */
    background-color: #fdf5f2;
    color: #3d1f11;
    line-height: 1.6;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center; /* centers the recipe card horizontally */
}

.recipe-container { /* the nice looking white box */
    max-width: 900px;
    background-color: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* idk why i wanted a shadow but looks good */
}

h1 { /* heading stuff*/
    font-size: 2.5rem;
    border-bottom: 2px solid #3d1f11;
    padding-bottom: 10px;
}

/* Image styling */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Makes it look good on mobile */
    margin-top: 20px;
}

.image, .firstimage {
    width: 28%; /* percentage bc small laptops should see the sute too */
    min-width: 200px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover cool stuff */
.image:hover, .firstimage:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* wy does the default tiemr look so bad...*/
#timerButton {
    background-color: #3d1f11;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin: 10px 0;
    transition: background-color 0.2s;
}

#timerButton:hover {
    background-color: #5d3a2a;
}

ol, ul {
    padding-left: 20px;
}