@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.outer-container{
    width:100%;
    margin-bottom:10px;
    background: linear-gradient(250.15deg, #AFC4F9 1.6%, #FFFFFF 51.18%, #AAC0F9 92.57%);
}
.container {
    width: 100%;
    background-color: #2D64ED;
    color: white;
    margin: 0 auto;
    padding: 10px 20px;
}

h1 {
    font-weight: 900;
    font-size: 64px;
    line-height: 100px;
    text-align: center;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.logo-box {
    background-color: white;
    padding: 20px;
    width: 224px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    h1{
        font-size: 48px;
    }
    .logo-box {
        width: 35%;
        height: 100px;
    }
}

@media (max-width: 480px) {

    h1{
        font-size: 36px;
    }
    .logo-box {
        width: 70%;
        height: 90px;
    }
}