#title {
    color: rgb(32, 62, 193);
    text-align: center;
    margin-bottom: 10px;
    border: 2px transparent;
    padding: 10px 20px;
    display: inline-block;
    background-color: rgb(39, 165, 255);
    font-size: 64px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgb(39, 165, 255);;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
