body {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: large;
}

header {
    padding: 10px;
    font-size: large;
}

h1,h3 {
    text-align: center;
}

#recipe_name{
    position: absolute;
    bottom: 0;
    left: 500px;
}

h2 {
    margin: 0;
    padding: 0;
}

#recipe {
    display: flex;
    flex-direction: column;
}

#img_title {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-height: 200px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  display: block;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

#data {
    display: flex;
    padding: 20px;
}

#data #ingredients {
    width: 50vw;
}

#data #steps {
    width: 50vw;
}

#data #steps span{
    font-size: large;
    font-weight: bold;
}

#data #steps p{
    font-size: small;
}