body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #d6c7e9be;
    color: #333;
}

.get-started-container {
    text-align: center;
    margin: 40px 0;
}

.get-started-button {
    background-color: #45277a;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.get-started-button:hover {
    background-color: #1d093f;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .logo-container {
    text-align: center;
  }
  
  .logo-container .logo {
    color: var(--ultramarine-blue);
    font-size: 2.4rem;
    font-weight: var(--fw-800);
    display: block;
  }
  
  .subtitle {
    font-size: 1.4rem;
    font-weight: var(--fw-400);
    color: var(--ultramarine-blue);
    display: block;
    margin-top: -9px;
  }
  

.header {
    text-align: center;
    padding: 50px 20px;
    background-color: #3b177e;
    color: white;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
}

.habits-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
}


.habit {
    display: flex;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}


.habit img {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
}

.habit-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.habit-content h2 {
    margin-top: 0;
    color: #4b288c;
    font-size: 1.8rem;
}

.habit-content p {
    margin: 10px 0 0;
    font-size:large;
    line-height: 1.5;
    font-style: italic;
    font-weight: 300 ;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #320f73;
    color: white;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .habit {
        flex-direction: column;
        align-items: center;
    }

    .habit img {
        max-width: 100%;
    }
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    position: relative;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}