@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;600&display=swap');

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Nunito', sans-serif;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #333;
  font-weight: 600;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

nav li {
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav li a:hover {
  background-color: #ddd;
  color: black;
}

body header h1 {
    text-align: center;
}

.finishedChutney {
  float: left;
  margin-right: 10%;
  position: relative;
  max-width: 30%;
  object-fit: cover;
}

.recipe-finishedchutney {
  text-align: center;
}

.recipe-finishedchutney img {
  display: block;
  margin: 0 auto;
}

article {
  margin-top: 5px;
  margin-bottom: 5px;
}

main {
  margin-left: 10%;
  margin-right: 10%;
}

#chutney-recipe-section {
    position: relative;
    
}

#qna-main {
  margin-left: 10%;
}

.footer-container {
  padding-top: 5%;
}

.footer-container-default {
  position: absolute;
  bottom: 0;
  padding: 5px;
}