.main {
    background-color: #003ebbb0;
    padding: 20px;

    h2 {
        color: white;
    }
}

.active {
    background-color: #d4d7e2;
    border-radius: 10px;
}

header ul li:hover {
    background-color: #d4d7e26c;
    border-radius: 10px;

}

.item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 200px;
    max-width: 120px;
    min-width: 120px;
    min-height: 120px;
    max-height: 120px;
}

.main-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-content a {
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.main-content a:hover {
    transform: scale(110%);
}

.main-content h3 {
    color: #003EBB;
}

.mini-logo {
    width: 5%;
    height: auto;
}

.partners {
    border-bottom: 1px solid;
}

.partners-list {
    padding-top: 2px;
    list-style: none;
}

.item .material-symbols-outlined {
    font-size: 30px;
}