body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    margin-top: -15px;
    margin-bottom: 50px;
}

.left {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px; /* Increased size */
    height: auto;
}

.inspiration {
    margin-left: 20px;
    font-size: 20px;
    color: #333;
    font-family: Arial, sans-serif;
}

.right {
    display: flex;
    align-items: center;
}

.subscribe {
    margin-right: 20px;
    padding: 10px 20px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
}

.fas.fa-search {
    width: 24px;
    height: auto;
    cursor: pointer;
}

.main-image {
    display: block;
    width: 50%;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 50px;
}

.words {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin-bottom: 100px;
    color: grey;
}

.words .separator {
    margin: 0 10px;
}

.subscribe-section {
    text-align: center;
    margin: 20px 0;
    font-size: 20px;
    font-family: Arial, sans-serif;
}

.subscribe-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 5px;
    width: 300px; /* Adjust width as needed */
    margin: 0 auto;
}

.email-input {
    padding: 10px;
    font-size: 16px;
    border: none;
    width: 100%; 
}

.subscribe-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
}

.privacy-text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center; 
    margin-bottom: 100px;
}

.privacy-link {
    color: #ff6b6b;
    text-decoration: none;
}

.featured-articles {
    text-align: left;
    margin-top: 20px;
    font-family:  sans-serif;
    color: #333;
    margin-left: 250px; /* Align to the left side */
}

.article-container {
    display: flex;
    justify-content: flex-start; /* Align items to the start */
    gap: 20px; /* Add some space between the sections */
    margin-left: 120px; /* Move container slightly to the right */
    margin-right: 100px; /* Align to the right side */
}

.article-section {
    flex: 0 0 45%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box; 
}

.article-image {
    width: 100%; 
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.article-text {
    font-size: 18px;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: left; 
    width: 100%; 
    padding-left: 10px; 
    margin-bottom: 10px; 
}

.additional-content {
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: left;
    width: 100%;
    padding-left: 10px;
}

.button-container {
    display: flex;
    justify-content: flex-start; 
    gap: 10px; 
}

.button {
    display: inline-block;
    padding: 5px 10px; 
    font-size: 12px; 
    background-color: grey; 
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 0;
}

.additional-articles {
    display: flex;
    justify-content: flex-start; 
    gap: 20px; 
    margin-left: 250px; 
    margin-right: 100px; 
    margin-top: 40px; 
}

.article-box {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box; 
}

.article-title {
    font-size: 18px;
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 10px; 
}

.article-description {
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #555;
    margin-bottom: 10px; 
}

.tag-container {
    display: flex;
    gap: 10px; 
}

.tag {
    display: inline-block;
    padding: 5px 10px; 
    font-size: 10px; 
    background-color: grey; 
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.tag:hover {
    background-color: darkgray;
    cursor: pointer;
}

hr {
    margin-top: 60px; 
    border: none; 
    border-top: 1px solid #ccc; 
}

.quote-image {
    display: block;
    width: 80%;
    height: auto;
    margin: 20px auto; 
    border-radius: 10px; 
}

.quote-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; 
}

.inspiring-articles {
    text-align: left;
    margin-top: 20px;
    font-family:  sans-serif;
    color: #333;
    margin-left: 250px;
    font-size: 25px;
}

.todoist-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px; 
    padding: 20px;
    background-color: rgb(217, 242, 234);
    border-radius: 10px;
}

.todoist-content {
    display: flex;
    align-items: center; 
    justify-content: center; 
    width: 80%; 
    flex-direction: row; 
}

.todoist-image {
    width: 200px; 
    height: auto;
    border-radius: 10px;
    margin-right: 20px; 
}

.todoist-text {
    text-align: center; 
    flex: 1;
}

.todoist-heading {
    font-size: 24px;
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.todoist-subheading {
    font-size: 18px;
    font-family: Arial, sans-serif;
    color: #555;
    margin-bottom: 20px;
}

.todoist-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #e53e3e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#footer{
    padding: 50px;
    background-color: #daf2eb;
}
#foot{
   text-align: center;
}
#foot>h1{
    font-size: 50px;
}
#foot>p{
    color: #706d6b;
}
#footer-icon{
    display: flex;
    margin-left: 7%;

}
#footer-icon>img{
    height: 35px;
    margin-right: 10px;
    border-radius: 4px;
    margin-top: 20px;
}
#footer-icon>h1{
    color: black;
}
#footer1{
    display: flex;
    padding: 30px;
    justify-content:space-between;
}
#footer1a>a{
    display: block;
    margin-top: 30px;
}
#footer1>div a{
    text-decoration: none;
}
#foot-right{
    display: flex;
}
#foot-right>div{
    margin-right: 80px;
}
#foot-right>div a{
    color: #26231f;
}
#foot1a{
    margin-left: 10px;
}
a>i{
    font-size: 30px;
}
#footer2a>a{
    color: #706d6b;
}
#footer2{
    display: flex;
    justify-content: space-between;
}
#footer2a>a:hover{
    text-decoration: underline;
}