.schedule_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    text-align: center;
    width: 100%;
    color: var(--color-dark);   
    padding-bottom: 40px;
    font-size: 64px;
}

.schedule_image img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}
.schedule_image{
    width:200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.schedule_section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.wedding_rings {
    padding: 25px;
    object-fit: contain;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.schedule_items {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: center;
    width: 100%;
    gap: 80px;
}

.schedule_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    height: auto;
    text-align: center;
    width: 300px;
    color: var(--color-dark);
    font-size: 20px;
}

.schedule_title {
    font-size: 32px;
    line-height: 32px;
    font-weight: normal;
    margin-bottom: 5px;
}
.schedule_header_text {
    font-size: 64px;
    line-height: 64px;
    font-weight: normal;
}

@media (max-width: 768px) {
    .schedule_image img {
        max-width: 100px;
        max-height: 100px;
    }
    .schedule_items {
        width: 98%;
        gap: 20px;
    }
    .schedule_container {
        width: 130px;
        font-size: 16px;
    }
    .schedule_title {
        font-size: 20px;
        line-height: 20px;
    }
    .schedule_image {
        width: 100px;
        height: 100px;
    }
    .wedding_rings {
        padding: 15px;
    }

    .schedule_header_text {
        font-size: 42px;
        line-height: 42px;
    }
}
