body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
}

header {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

.start a {
    color: white;
    text-decoration: none;
}

.articles {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card {
    background: white;
    text-decoration: none;
    color: black;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

main img {
    width: 100%;
    height: 320px;
}

.card h2 {
    padding: 10px;
}

.article-page {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
}

.article-page img {
    width: 100%;
    margin-bottom: 20px;
}

.content p {
    line-height: 1.6;
}