body {
    background-color: #100532;
}

.containerPrincipal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.containerSecundario {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: #DCDCDC;
    border-radius: 30px;
    box-shadow: 0 0 50px #371b6e;
    overflow: hidden;
    margin-left: 10px;
    margin-right: 10px;
}

.containerInfo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.containerProjetos {
    width: 95%;
    height:460px;
    border: 2px solid #2C1E55;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    justify-content: center;
}

.conteudo-scroll {
    width: 100%;
    height: 100%;
    overflow-y: scroll;

    display: flex;
    flex-direction: column; 
    align-items: center;   
}

.conteudo-scroll::-webkit-scrollbar {
    width: 10px;
    height: 7px;
}
.conteudo-scroll::-webkit-scrollbar-track {
    background: #100532;
    border-radius: 20px;
}
.conteudo-scroll::-webkit-scrollbar-thumb {
    background: #2C1E55;
    border-radius: 10px;
}

.boxProjeto {
    width: 600px;
    height: 150px;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 20px;
    margin: 10px 0; 
    background-color: #2579be ;

    display: flex;
    align-items: center;

    padding: 0 30px;

    box-sizing: border-box;
}

.boxProjeto:hover {
    box-shadow: 0px 0px 20px 5px #2C1E55;
}

.img {
    width: 100px;
    height: 100px;
    margin-right: 30px;
    flex-shrink: 0;
}

.img-perfil {
    width: 150px;
    height: 150px;
    border-radius: 40px;
    margin: 15px 20px 0 0;
}

.img-logo {
    width: 120px;
    height: 150px;
    margin: 15px 0px 0 20px;
}

.textShadow {
    text-shadow: 0 0 10px #2C1E55;
    font-size: 28px;
}

.textBold {
    font-weight:600;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.info-aluno {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: start;
}

h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h4 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
}

p {
    margin-left: 10px;
    margin-right: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
}

a {
    font-size: 20px; 
    text-decoration: none;
    color: white;
}

a:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {

    .containerSecundario {
        width: 100%;
    }

    .img-perfil {
        width: 75px;
        height: 75px;
        margin: 5px 5px 0 5px;
    }

    .img-logo {
        width: 60px;
        height: 75px;
        margin: 5px 10px 0px 0;
    }

    .img {
        width: 70px;
        height: 70px;
    }

    h1 {
        font-size: 17px;
    }

    p, .info-aluno {
        font-size: 20px;
        margin-left: 100px;
        margin-right: 100px;
    }

    h4 {
        font-size: 15px;
    }

    span {
        font-size: 16px;
    }

    .boxProjeto {
        width: 600px;
        height: 120px;
        margin: 10px 0;
    }

    .containerProjetos {
        height: 700px;
    }

}

@media (max-width: 435px) {

    .containerSecundario {
        width: 100%;
    }

    .img-perfil {
        width: 60px;
        height: 60px;
        margin: 5px 5px 0 5px;
    }

    .img-logo {
        width: 50px;
        height: 65px;
        margin: 5px 10px 0px 0;
    }

    .img {
        width: 50px;
        height: 50px;
    }

    h1 {
        font-size: 17px;
    }

    p, .info-aluno {
        font-size: 14px;
        margin-left: 10px;
        margin-right: 10px;
    }

    h4 {
        font-size: 12px;
    }

    span {
        font-size: 16px;
    }

    .textShadow {
        font-size: 20px;
    }

    .boxProjeto {
        width: 300px;
        height: 140px;
        margin: 10px 0;
    }

    .containerProjetos {
        height: 700px;
    }

}

@media (max-width: 395px) {

    .containerSecundario {
        width: 100%;
    }

    .img-perfil {
        width: 60px;
        height: 60px;
        margin: 5px 5px 0 5px;
    }

    .img-logo {
        width: 50px;
        height: 65px;
        margin: 5px 10px 0px 0;
    }

    .img {
        width: 50px;
        height: 50px;
    }

    h1 {
        font-size: 17px;
    }

    p, .info-aluno {
        font-size: 14px;
        margin-left: 10px;
        margin-right: 10px;
    }

    h4 {
        font-size: 12px;
    }

    span {
        font-size: 16px;
    }

    .boxProjeto {
        width: 280px;
        height: 140px;
        margin: 10px 0;
    }

    .containerProjetos {
        height: 700px;
    }

}