body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #efffea;
    line-height: 1.6;
}

p {
    font-weight: 200;
    color: #a99e9e;
    font-size: 13pt;
}

main {
    display: flex;
    max-width: 1200px;
    margin : auto;
    padding: 2rem;
    gap: 3rem;
}

.recipe {
    flex: 4;
    min-width: 0;
}



header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 62pt;
    margin-bottom: -1.5rem;
    color: #e8bfbf;
    
}



.fixed {
    flex: 1;
    max-width: 280px;
    position: sticky;
    top: 9.5rem;
    align-self: flex-start;
    height: fit-content;
}

.fixed h3 {
    text-transform: uppercase;
    font-size: 13pt;
    margin-bottom: 0.5rem;
}

.fixed ul {
    padding-left: 1.2rem;
    line-height: 1rem;
}

li::marker {
  color: #e8bfbf; 
}


img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 3rem;
}

img.header {
    margin-bottom: 1rem;
}

.info-box {
    display: flex;
    justify-content: space-around;
    background: #e8bfbf;
    border-radius: 10px;
    padding: 1.2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 30pt;
    margin-bottom: 1rem;
    color: #e8bfbf;
    font-family: "Cormorant Garamond", serif;
    
}

.step {
    margin-bottom: 2rem;
    font-weight: 300;
    color: #e8bfbf;
}

h3 {
    font-size: 13pt;
    color: #e8bfbf;

}

span {
    font-weight: 300;
    color: #a99e9e;
}

.step img {
    width: 100%;
    border-radius: 8px;
}

button {
        display: none;
}

footer {
    background-color: #e8bfbf;
    text-align: center;
    padding: 3rem;
}


a {
    color: white;
}



@media (max-width: 750px) {
    
    main {
        flex-direction: column;
        padding: 1.5rem;
    }

    .fixed {
        max-width: 100%;
        margin-top: 2rem;
        order: 2;
    }


    header h1 {
        font-size: 40pt;
        margin-bottom: -1rem;
    }

   h2 {
       font-size: 25pt;
   }

    button {
        display: block;
        color: #ffffff;
        background-color: #e8bfbf;
        padding: 1rem;
        border-radius: 30px;
        border: none;
        font-weight: 200;
        width: 100%;

}
}