.profile {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.bigContainer {
    min-height: calc(100vh - 200px);
}

img.logopedaImg {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
}

.copyright {
    text-align: center;
    padding: 0.5em;
    background-color: black;
    color: #fff;
    margin-top: 1em;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

div#navbarSupportedContent, ul.nav {
    flex-wrap: inherit;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.nav-link{
    color: #000;
}

@media only screen and (max-width: 991px) {
    ul.nav {
        flex-direction: column;
    }
}