.overview-container {
    padding: 50px 10%;
    background: #7a0000;

}

.content h2 {
    font-size: 2rem;
    text-align: center;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
}

.content-boxes-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 5px;
    align-items: center;
}

.content-boxes {
    width: 300px;
    height: 200px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

@media screen and (max-width: 1225px) {
  .content-boxes-container {
    justify-content: center;
    gap: 50px;
}
}