.footer{
    width: 100%;
    margin: auto;
    background-color: #F5F5F5;
}
.footerMain{
    width: 70%;
    margin: auto;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin: auto;
}
.footerDevider{
    width: 70%;
    height: 1px;
    margin: 30px auto 30px auto;
    background-color: #F5F5F5;
    border: none;
}
.darkDevider{
    background-color: #000;
    margin-bottom: 60px;
}
.footerCol{
    width: 25%;
    display: flex;
    flex-direction: column;
}
.footerLogo{
    width: 80%;
    margin-top: 20px;
}
.footerLink{
    margin: 7px 5px 7px 2px;
}
.footerLink a{
    color: #000;
    opacity: 0.8;
    font-weight: 500;
}
.footerLink a:hover{
    opacity: 1;
}
.footerPowered{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 600;
}
.poweredP{
    margin-right: 15px;
}
.footerStudents{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 10px;
}
.studentPicture{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.footerStudents a{
    color: #000;
    text-decoration: underline;
    margin: 0 5px;
}
.footerCopyright{
    width: 70%;
    margin: auto;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
.footerCopyrightP{
    opacity: 0.7;
}
.students{
    display: flex;
    flex-direction: row;
}
/* Extra large devices (large laptops and desktops, 1200px) */
@media only screen and (max-width: 1200px) {
    .footerMain{
        width: 90%;
    }
    .footerCopyright{
        width: 90%;
    }
    .footerDevider{
        width: 100%;
    }
}

/* Large devices (laptops/desktops, 992px) */
@media only screen and (max-width: 992px) {
    .footerMain{
        flex-wrap: wrap;
    }
    .footerCol{
        width: 33%;
    }
    .footerCol:has(.footerLogo){
        width: 100%;
    }
    .footerLogo{
        max-width: 200px;
        margin-bottom: 30px;
    }
}

/* Medium devices (landscape tablets, 768pxp) */
@media only screen and (max-width: 768px) {
    /*.footerMain{
        flex-direction: column;
    }*/
    .footerCol{
        width: 50%;
    }
    .footerCopyright{
        flex-direction: column-reverse;
        height: fit-content;
    }
    .footerPowered{
        margin-bottom: 20px;
    }
}

/* Small devices (portrait tablets and large phones, 600px) */
@media only screen and (max-width: 600px) {
    .footerCol{
        width: 100%;
    }
    .footerCopyright{
        align-items: flex-start;
    }
    .footerCopyrightP{
        margin-bottom: 10px;
    }
    .footerPowered{
        display: block;
    }
    .footerStudents{
        margin-top: 10px;
    }
    .students{
        margin-top: 15px;
        flex-wrap: wrap;
        height: fit-content;
    }
    .footerCopyrightP{
       margin-bottom: 5px;
    }
}


