#title {
    padding: 50px 20px;
    background: url('/photos/title.webp') no-repeat;
    background-position: center 22%;
    background-size: cover;
    color: white;
    text-align: center;
}
#title img {
    height: 200px;
}
#title h1 {
    margin: 20px 0 10px;
    font-size: 50px;
}
#title p {
    font-size: 30px;
    font-style: italic;
}

.blue {
    background-color: #D4EFFC;
}

.photo {
    display: block;
    max-width: 100%;
    max-height: 300px;
    margin: 20px auto 0;
}

.numitem {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.numitem img {
    height: 50px;
}
.numitem-text {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 600px) {
    #title {
        gap: 25px;
    }
    #title img {
        height: 150px;
    }
    #title h1 {
        font-size: 30px;
    }
    #title p {
        font-size: 20px;
    }
}