body {
    font-family: 'Helvetica Neue', sans-serif;
}

#backgroundimg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

}

h1 {
    font-size: 64px;
    color: rgb(37, 155, 37);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  }

.top-bar {
    padding: 10px;
}

.till {
    display: inline-block;
    background-color: rgb(37, 155, 37);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.till:hover {
    background-color: rgb(33, 119, 33);
    transform: scale(1.05);
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 30px 20px 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.title {
      position: relative;
      background-color: white;
      border-radius: 10px;
      text-align: center;
}

.article {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
}

.article:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.article h2 {
    font-size: 24px;
    color: rgb(37, 155, 37);
    margin-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.article p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    h1 {
      font-size: 40px;
    }
    .article {
      padding: 20px;
    }
    .article h2 {
      font-size: 20px;
    }
    .title {
        display: none ;
    }
    .article p {
      font-size: 15px;
    }
}