body 
  {
    background: linear-gradient(to bottom, #FFF8E1, #f89d2d);
    background-repeat: no-repeat;
    background-attachment: fixed;
    height:  1080px;
    margin: 0;
    font-size: 14px;
    margin-left: 10px;
    margin-right: 10px;
  }
h1 
  {
    text-align: center;
    color:#FFA500;
  }
p 
  {
    color: black;
  }

nav 
  {
  background-color: #4CAF50;
  padding: 10px 20px;  /* This will give space on both sides */
  width: 100%;
  margin: 0;
  box-sizing: border-box; /* Ensure padding is included in the width */
  }

nav ul 
  {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  }

nav a 
  {
  color: #FFF8E1;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  display: inline-block;
  }

nav a:hover 
  {
  background-color: #9E7A3E;
  border-radius: 5px;
  }

table, th, td 
  {
  border: 1px solid black;
  }

.full-width-table 
  {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  }

.question-number  
  {
  width: 10%;
  }

label  
  {
  display: block;
  margin-bottom: 4px;
  }


.recipe-form 
  {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid black;
  border-radius: 10px;
  background-color: #FFA500 ;
  box-shadow:0 4px 12px #4CAF50 ;
  }

.title-container
  {
  display: flex;
  justify-content: center;  
  }

.bubbleh1
  {
  padding: 20px 30px;
  border-radius: 50%;
  background-color:#4CAF50;
  display: inline-block;
  box-shadow: 0 2px 4px #FFA500;
  }

.recipe-section
  {
  display: flex;
  justify-content:center;
  margin-bottom: 20px; 
  }

.column
  {
  width: 50%;
  padding: 10px;
  margin: 10px;
  font-size: 14px;
  }

.text-container 
  {
  padding: 20px; 
  margin: 0 auto;
  max-width: 1600px;
  box-sizing: border-box; 
  }

.welcome
  {
  text-align: center;
  color: black;
  margin: 20px;
  }

.footer 
  {
  background-color: #4CAF50;
  padding: 20px 0;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
  color:#FFF8E1;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  }
  
  .footer a 
  {
  color: #FFF8E1;
  text-decoration: none;
  font-weight: bold;
  }
  
.footer a:hover 
  {
  text-decoration: underline;
  }

  .info
  {
  text-align: center;
  }

.method-img
  {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  }

.method-img img 
  {
  width: 100%;
  max-width: 150px;
  border-radius: 15px;
  margin-top: 10px;
  object-fit: cover;
  }

.recipe-title
  {
  text-align: center;
  margin-bottom: 10px;
  }

.print-container
  {
  text-align: center;
  margin-top: 10px;
  }


.print-button
  {
  background-color: #4CAF50;
  color: #FFA500;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  }

.print-button:hover 
  {
  background-color: #45a049;
  }  

@media print
  {
    body
    {
    font-size: 11px;
    }
    .column
    {
    font-size: 11px;  
    }
    @page 
    {
    margin: 1cm;
    }

    nav, .footer
    {
    display: none;
    }
  }
