
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-page {
    min-height: 100vh;
    width: 100%;
    background-image: url('../images/Background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.mainLogo {
    width: 30%;
    min-width: 300px;
}

.mainLogo img{
    width: 100%;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
}

.logos img {
    width: 100%;
}

.logos img:hover{
    opacity: 0.4;
}





@media screen and (max-width:750px){
    /* .mainLogo{
        transform: scale(0.6);
    } */

    /* .logos img{
        width: 150px;
        height: auto;
    } */
}


@media screen and (max-width:400px){
    
    .mainLogo {
        width: 90%;
        min-width: 90%;
    }

    .logos {
        width: 90%;
    }

    .copyright {
        width: 90%;

    }


}
