.home {
    text-align: left;
    padding: 80px 50px;
    max-width: 900px;
    margin: auto;
}

.home section {
    margin: 35px 0;
}

/* Hero */
.home .hero {
    text-align: center;
    margin-bottom: 60px;
}

.home .hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.home .tagline {
    font-size: 20px;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
}

.home h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.home h2 {
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.home ul {
    list-style: none;
}

.home li {
    font-size: 16px;
    margin-bottom: 5px;
}

.home p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Project list styling */
.projects {
    background-color: #f9f9f9;
    font-size: 1rem;
    line-height: 1.5;
}

.projects__items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

a.projects__item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 256px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

a.projects__item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.projects__poster {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.projects__item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.projects__platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.projects__all {
    text-align: center;
    margin-top: 30px;
}

/* Articles section styling */
.articles {
    background-color: #f9f9f9;
    font-size: 1rem;
    line-height: 1.5;
}

.articles__items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

a.articles__item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 256px;
    text-align: center;
    transition: box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.articles__item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.articles__thumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.articles__item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.articles__all {
    text-align: center;
    margin-top: 30px;
}
