body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.centered-header {
    background-color: white;
    text-align: center;
    padding: 20px;
    height: 15vh;
}

.centered-header img {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    height: 35vh;
    overflow: auto;
}

.blue-background {
    background-color: #0575DE;
    color: white;
}

.light-grey-background {
    background: #F5F7FB;
}

.database-icon {
    /* flex-basis: 20%; */
    padding: 20px;
    box-sizing: border-box;
}

.info {
    /* flex-basis: 80%; */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.contact-us {
    font-weight: bold;
    color: inherit;
}

.white-text {
    color: white;
}

.blue-text {
    color: #0575DE;
}

.footer {
    background-color: #FFF;
    color: #0575DE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    height: 10vh;
    margin-top: auto;
}

.footer-left img {
    width: 130px;
    height: 35px;
    margin-right: 10px;
}

.footer-left a,
.footer-right a {
    margin-right: 10px;
}

.social-icon{
    margin-left: 20px;
    color: black;
    transition: color 0.3s;
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    color: #0575DE;
}

.youtube {
    width: 25px;
    height: 25px;
    margin-bottom: -4px;
}


@media (max-width: 600px) {

    .centered-header {
        padding: 0px;
        width: 60%;
        margin: auto;
        height: auto;
    }

    .centered-header img {
        max-width: 100%;
        height: auto;
    }

    .row {
        padding: 0px;
        max-height: none;
    }
    
    .info {
        flex-basis: 100%;
    }

    .info-title {
        font-size: 18px;
        margin: 10px;
    }

    .info-text {
        font-size: 14px;
    }

    .database-icon {
        display: none;
    }

    .footer {
        padding: 5px 0 0 0;
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        margin-bottom: 10px;
    }
}