body {
    background: linear-gradient(to top, rgb(50, 50, 50), rgb(95, 95, 95));
    min-height: 100vh;
}
.menu {
    background-color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.menu li {
    display: inline-block;
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: #212529;
    font-size: 1.5em;
}
.active {
    font-weight: bold;
}

.partnerships {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partnerships img {
    width: 300px;
    height: auto;
    margin: 10px;
}
.container {
    margin-top: 50px; /* Adjust this value to increase or decrease the space */
}
.card-img-top {
    width: 100%;
    height: 400px; /* Adjust this value to change the height of the images */
    object-fit: fill; /* This will ensure that the images cover the entire space without distortion */
}