* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    margin: 0;
    min-height: 150vh;
    display: flex;
    width: 100%;
    max-width: 100%;
    background-color: #f5f5f5;
}

.page {
    display: none;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 40px;
}

.galleryPage {
    display: block;
}

.companyName {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    padding-left: 20px;
}

.addRecipe, .delete-button, #update-recipe-btn {
    border: none;
    display: block;
    color: white;
    background-color: rgb(236, 72, 72);
    border-radius: 50px;
    padding: 10px;
    text-align: center;
    align-items: center;
    justify-content: right;
    cursor: pointer;
}

.addRecipe {
  margin-left: 20px;
  width: 100px;
}

.delete-button{
  margin-right: 20px;
}
#register {
    border: none;
    display: flex;
    color: white;
    background-color: rgb(236, 72, 72);
    border-radius: 50px;
    padding: 12px 20px;
    text-align: center;
    align-items: center;
    justify-content: right;
    margin-right: 20px;
    cursor: pointer;
}

#login-page {
    background: rgb(138, 92, 182);
    display: flex;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    border: 1px solid white;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
    justify-content: center;
}

.header1, .header2{
    display: flex;
    width: 100%;
    height: 80px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, rgba(95,109,217,255), rgb(92, 5, 174));
    padding: 15px 0;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.recipeBody {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
    background-color: #f5f5f5;
}

.caption p {
  display: flex;
  justify-content: center;
    color: gray;
    flex-wrap: wrap;
}

.recipe-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 30px;
    gap: 20px;
    
}

#cuisineType {
    display: flex;
    max-width: fit-content;
    border: none;
    color: white;
    font-size: small;
    border-radius: 20px;
    padding: 10px 20px;
    text-align: center;
    background-color: rgba(95,109,217);
    text-decoration: none;
}

.recipeDetails {
    background-color: white;
    text-align: left;
    padding: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    line-height: 15px;
}

.list, .share {
    display: flex;
    flex-direction: row;
    color: rgb(68, 68, 68);
    font-size: small;
    justify-content: space-between;
}

.recipeCard1,.recipeCard2 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    line-height: 0px;
}

.list {
    border-bottom: 1px solid lightgray;
}

.searchBar, button, input {
    display: flex;
    padding: 5px 10px;
    text-align: center;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
}

.searchSection {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

.filters button {
    display: flex;
    border: 2px solid rgb(167, 167, 167);
    padding-top: 5px;
    height: 35px;
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filters button:hover {
    background-color: rgba(95,109,217);
    color: white;
    border: none;
}

.filters button.active {
    background-color: rgba(95,109,217);
    border: none;
    color: white;
}


.back {
    margin-right: 100px;
    background: rgb(138, 92, 182);
    color: white;
    border: 1px solid white;
    cursor: pointer;
}

.titleRecipe {
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 10% black;
    border-radius: 15px;
    justify-content: center;
    text-align: center;
    background-color: white;
    width: 90%;
    max-width: 900px;
    height: 100%;
    margin: 20px auto;
    line-height: 10px;
    padding-top: 20px;
}

.login, .register, .reset {
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 10% black;
    border-radius: 15px;
    justify-content: center;
    text-align: center;
    background-color: white;
    width: 90%;
    max-width: 400px;
    height: auto;
    line-height: 15px;
    align-items: center;
    margin: 50px auto;
    padding: 20px;
}

.reset {
  width: 90%;
  max-width: 420px;
}

.login-form, .register-form, .reset-password-form {
    margin-top: 10px;
}

#login-form1, #login-form2, #register-form1, #register-form2, #register-form3 {
    line-height: 0%;
}

.loginBtn, .createBtn, .sendResetBtn {
    margin-top: 30px;
    margin-bottom: 20px;
    border: none;
    width: 100%;
    max-width: 300px;
    height: 40px;
    color: white;
    justify-content: center;
    background: linear-gradient(45deg, rgba(95,109,217,255), rgb(92, 5, 174));
    cursor: pointer;
    font-weight: bolder;
}

#forgotPassword, #noAcc, #already-log, #back-log {
    text-decoration: none;
    color: rgb(101, 101, 243);
    font-weight: bolder;
}

#basicInfo {
    text-align: left;
    margin-left: 20px;
    margin-right: 5px;
    margin-top: 20px;
    margin-bottom: 0px;
    line-height: 0;
}

#cookie {
    border: 1px solid lightgray;
    border-radius: 5px;
    text-align: left;
    padding: 10px;
    width: 97%;
}

.sections {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

#section p, input {
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

#section {
    margin-right: 5px;
    flex: 1;
    min-width: 200px;
}
#input-type {
    border-radius: 5px;
}

#newCuisine {
    width: 100%;
    max-width: 400px;
    height: 40px;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 5px;
}

#textArea, #tips {
    display: flex;
    width: 99%;
    padding: 10px;
    height: 80px;
    border: 1px solid lightgray;
    border-radius: 5px;
    margin-bottom: 30px;
}

.text {
    flex-direction: column;
    align-items: center;
    justify-content: left;
    text-align: left;
    margin-bottom: 25px;
}

#basicInfo-recipe {
    flex-direction: column;
    justify-content: left;
    align-items: center;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
}

.timesSection {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.times, input{
    display: flex;
    margin-right: 0px;
}
.difficulty {
    margin-bottom: 30px;
    border-bottom: 2px solid lightgray;
}
.totalSection {
    border-bottom: 2px solid lightgray;
    margin-left: 20px;
    margin-right: 20px;
}

.ingredients {
    justify-content: left;
    align-items: center;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid lightgray;
}

.ing-type {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

#add-ing {
    margin-top: 20px;
    padding: 10px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    background-color: rgb(30, 180, 100);
    margin-bottom: 30px;
}

.textClass {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 10px;
    align-items: top;
}

#textArea1 {
    display: block;
    width: 95%;
    padding: 10px;
    height: 80px;
    border: 1px solid lightgray;
    border-radius: 5px;
    margin-bottom: 20px;
}

.instruct-recipe {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
    border-bottom: 2px solid lightgray;
    margin-bottom: 30px;
}

#add-step {
    padding: 10px;
    width: 100px;
    border: none;
    color: white;
    border-radius: 10px;
    background-color: rgb(30, 180, 100);
    margin-bottom: 30px;
    cursor: pointer;
}

.optional {
    justify-content: left;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 5px;
}

.diet {
    display: flex;
    text-align: left;
    flex-direction: column;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid lightgrey;
}

#labelCheck, label{
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: left;
    margin-top: 5px;
    margin-bottom: 30px;
}
#labelCheck {
  flex-wrap: wrap;
}
#labelInput {
    cursor: pointer;
}

#create-recipe {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border: none;
    width: 225px;
    height: 40px;
    justify-content: center;
    background: linear-gradient(45deg, rgba(95,109,217,255), rgb(92, 5, 174));
    cursor: pointer;
}


.header3, .header4, .header5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, rgba(95,109,217,255), rgb(81, 4, 153));
    height: 80px;
    width: 100%;
    color: white;
    padding: 15px 0;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);

}

.companyName {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.navButtons {
    display: flex;
    gap: 15px;
}

.backBtn {
    border: none;
    padding: 10px 18px;
    margin-right: 100px;
    border-radius: 25px;
    cursor: pointer;
}

.backBtn {
    background: rgb(95, 102, 200);
    color: white;
    border: 1px solid white;
}

.recipe-sec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(45deg, rgba(95,109,217), rgb(81, 4, 153));
    justify-content: left;
    color: white;
}

.recipeHeader p {
    color: white;
}
.recipeHeader h1 {
    margin: 0;
    font-size: 28px;
    margin-bottom: 10px;
}

.tag {
    background: rgb(110, 116, 195);
    padding: 5px 15px;
    border: 1px solid white;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.likeBtn, .shareBtn {
    border: 1px solid white;
    margin-top: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    color: white;
    background: rgb(110, 116, 195);
}

.like-share {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.recipeContent {
    display: flex;
    margin-left: 30px;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap;
}

.leftSection {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.rightSection {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#p-card {
    border: none;
    border-left: 3px solid rgb(95, 95, 228);
    padding: 20px;
    background-color: rgb(250, 248, 248);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.card h3 {
    margin-top: 0;
    border-bottom: 3px solid rgb(95, 95, 228);
    padding-bottom: 10px;
}

textarea {
    width: 100%;
    min-height: 75px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid lightgray;
}

.commentBtn {
    margin-top: 10px;
    padding: 8px 12px;
    border: none;
    background: linear-gradient(45deg, rgba(95,109,217,255), rgb(81, 4, 153));
    color: white;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.comment {
    margin-top: 20px;
    padding: 10px;
    border-left: 3px solid rgb(95, 95, 228);
    background-color: rgb(250, 248, 248);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#commentDate {
    display: flex;
    line-height: 0px;
    margin-top: 10px;
    justify-content: space-between;
    flex-direction: row;
}

.infoCard p {
    margin: 8px 0;
}

.infoCard {
    width: 100%;
    max-width: 350px;
}
.tagGreen {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    max-width: 200px;
    border-radius: 15px;
    font-size: 14px;
    height: 30px;
    cursor: pointer;
}

#p-info1, #p-info2 {
    width: 100%;
    max-width: 125px;
    line-height: 1;
    border: none;
    padding: 20px 30px;
    text-align: center;
    flex-direction: row;
    background-color: rgb(250, 248, 248);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#p-info4, #p-info3 {
    width: 100%;
    max-width: 125px;
    line-height: 1;
    border: none;
    padding: 30px 25px;
    text-align: center;
    flex-direction: row;
    background-color: rgb(250, 248, 248);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.pInfo-1 {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pInfo-2 {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.userButton {
    border: 2px solid white;
    background-color: transparent;
    margin-right: 50px;
    border-radius: 15px;
    color: white;
}

.userPopover p {
  margin: 5px 0;
  cursor: pointer;
  color: #333;
}

.userPopover p:hover {
  color: #5a39f2;
}

/* Profile Popup Styles */
.profile-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.profile-content {
  background-color: white;
  margin: 10% auto;
  padding: 25px 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 350px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  animation: fadeInUp 0.3s ease-out;
}

.profile-content h2 {
  margin-bottom: 20px;
  color: #333;
}

.profile-content p {
  font-size: 16px;
  color: #444;
  margin: 10px 0;
}

.button-group {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
}

.button-group button {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

#updateProfileBtn {
  background-color: #4CAF50;
  color: white;
}

#changePasswordBtn {
  background-color: #2196F3;
  color: white;
}

.button-group button:hover {
  opacity: 0.85;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  color: #888;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Overlay background */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup box */
.popup-box {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.popup-box1 {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  height: auto;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.popup-box h2, .popup-box1 h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
}

/* Close button (X) */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #000;
}

/* Labels & Inputs */
.popup-box label, .popup-box1 label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.popup-box input, .popup-box1 input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Buttons */
.primary-btn,
.secondary-btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}

.primary-btn {
  background-color: #007bff;
  color: #fff;
}

.primary-btn:hover {
  background-color: #0056b3;
}

.secondary-btn {
  background-color: #6c757d;
  color: #fff;
}

.secondary-btn:hover {
  background-color: #5a6268;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.recipe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.recipe-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 20px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s ease;
}

.modal-content h2 {
  margin-bottom: 10px;
  color: #333;
}

.modal-content h3 {
  margin-top: 15px;
  color: #444;
}

.modal-content ul, .modal-content ol {
  margin-left: 20px;
}

.modal-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #000;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.update-modal {
  display: none;
  position: fixed;
  z-index: 9999; /* Ensures modal is clickable */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.update-modal-content {
  background-color: #fff;
  margin: 3% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  animation: slideDown 0.3s ease-out;
  position: relative;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.save-btn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.save-btn:hover {
  background-color: #45a049;
}

input, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* --- Mobile Fixes: Max width 600px --- */
@media (max-width: 620px) {
h1 { font-size: 22px; line-height: 1.4; }
    h2 { font-size: 18px; line-height: 1.4; }
    h3 { font-size: 18px; line-height: 1.4; }
    h4 { font-size: 18px; line-height: 1.4; }
    h5 { font-size: 18px; line-height: 1.4; }
    p  { font-size: 14px; line-height: 1.5; }
    label  { font-size: 14px; line-height: 1.5; }

    section, .form-container, .card {
        padding: 15px !important;
    }
    * {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}

    .header1, .header2, .header3, .header4, .header5 {
        height: auto;
        padding: 10px;
        flex-direction: row;
        gap: 10px;
        text-align: center;
        justify-content: space-between;
    }

    .companyName {
        justify-content: left;
        padding-left: 0;
        width: 60%;
    }

    .navButtons {
        justify-content: center;
        gap: 5px;
        flex-direction: row;
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    /* Buttons */
    #register, #login-page, .addRecipe, .delete-button {
        margin: 0;
        width: auto;
        padding: 10px;
        height: auto;
    }

    #login-page{
      margin-left: 20px;
    }

    #register {
      margin-left: 10px;
    }

    .backBtn {
        margin-right: 0;
        width: 100%;
        max-width: 200px;
    }

    /* Recipe Cards */
    .recipe-cards {
        margin: 10px;
        gap: 15px;
        justify-content: center;
    }

    .recipeCard1, .recipeCard2 {
        width: 100%;
        max-width: 320px;
    }

    /* Search Section */
    .searchSection {
        flex-direction: column;
        gap: 10px;
        margin: 0 10px;
    }

    .filters {
        justify-content: center;
    }

    /* Create Recipe Form */
    .sections {
        flex-direction: column;
    }

    .timesSection {
        flex-direction: column;
        gap: 10px;
    }

    .ing-type {
        flex-direction: column;
        gap: 10px;
    }

    #textArea,
    #tips,
    #textArea1 {
        width: 100%;
    }

    /* Recipe Header Section */
    .recipe-sec {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        align-items: center;
    }

    .recipeHeader h1 {
        font-size: 22px;
    }

    .like-share {
        justify-content: center;
    }

    /* Recipe Content */
    .recipeContent {
        flex-direction: column;
        margin-left: 0;
        padding: 20px;
    }

    .leftSection, .rightSection {
        width: 100%;
        min-width: unset;
    }

    /* Info Cards Layout */
    .pInfo-1, .pInfo-2 {
        flex-direction: row;
        gap: 20px;
    }

    #p-info1, #p-info2, #p-info3, #p-info4 {
        max-width: 140px;
        width: 100%;
    }

    .infoCard {
        max-width: 100%;
    }

    /* Popups */
    .popup-box, 
    .popup-box1,
    .profile-content {
        width: 95%;
        max-width: 350px;
        margin: 20px auto;
    }

}

/* ---------- Tablet (481px–768px) ---------- */
@media (max-width: 768px) {

    .recipe-cards {
        justify-content: center;
    }

    .recipeCard1, .recipeCard2 {
        width: calc(50% - 20px);
        max-width: 350px;
    }

    .recipeContent {
        flex-direction: column;
        align-items: center;
    }

    .leftSection, .rightSection {
        width: 100%;
    }

    .filters {
        justify-content: center;
    }

    .header1, .header2, .header3 {
        padding: 10px;
    }
}
