body {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    position: relative;
    height: 3000px;
    font-size: 18px;

}
.h2-size {
    display: grid;
    font-size: 60px;  
    position: fixed;    
    width: 100%;
    margin-bottom: 20px;
    margin-top: -70px;

}
.js-creation, .js-creation-publish {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 200px;
}
.home-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  margin-top: 50px;
}

/* Medium screens (tablets) */
@media (max-width: 1400px) {
  .home-container {
    grid-template-columns: repeat(3, 1fr); /* 2 columns */
  }
}
@media (max-width: 800px) {
  .home-container {
    grid-template-columns: 2fr; /* 2 column */
  }
}

.grid-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100vh; }

.background-image-container {
    display: grid;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -100;
    overflow: hidden;
}
.background-image-container .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(100%);
}


.header-grid {
    display: grid;
    place-items: center;
    background-color: #55e38b;
    padding: 0px;
    margin-top: 0px;
    position: fixed;
    width: 100%;
    height: 120px;
}

.header {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-size: 45px;

}
.navigator-grid {
    margin-top: 120px;
    background-color: #55e38b;
    position: fixed;
    top: 0px;
    width: 10px;
    height: 100%;

}
.main-content {
    margin-top:0px;
    padding: 200px;
}
.footer-grid {
    display: grid;
    background-color: #55e38b;
    padding-bottom: 20px;
    margin-top: 0px;
    bottom: 0px;
    width: 100%;
    height: 20px;
    position: fixed;
    text-align: center;
}
.creating-gride {
    display: grid;
    gap: 10px;
}
.text-area {
    width: 100%;
    height: 150px;
    resize: none;
    padding: 10px;
}
.submit-button {
    width: 100px;
    height: 40px;
    background-color: #55e38b;
    color: white;
    border: none;
    cursor: pointer;
}
.submit-button:hover {
    background-color: #3cb371;
}     