html {
    font-size: 1.1rem;
    width: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

.socials > div {
    display: flex;
    flex-direction: row;
    justify-content: space-around; }
    .socials > div > div {
        display: flex;
        flex-direction: column;
        align-items: center; }
        .socials > div > div:not(:first-child) {
            margin-left: 10px;
}

ul.courses {
    font-size: 0.8rem;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2; }
    #uoe-bsc-courses li:last-child {
        list-style-type: none;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; }
    footer > div > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .socials {
        font-size: 0.8rem;
        width: 100%;
}

#avatar {
    position: relative;
    margin-left: 10px; }
    #avatar > img {
        width: 75px;
        height: 75px;
    }
    #avatar > a > div {
        position: absolute;
        top: 47px;
        left: 47px;
        width: 7px;
        height: 7px;
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 90%;
    }
}

@media only screen and (max-width: 480px) {
    html {
        font-size: 80%;
    }
    ul.courses {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
    #uoe-bsc-courses li:last-child {
        display: none;
    }
}