* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background-color: #007FFF;

}

h1 {
    text-align: center;
    margin: 40px 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

article, .item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

article h2,
.item h2 {
    text-align: center;
}

article p {
    text-align: justify;
}

.item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}



