
body{
    margin: 0;
}

.black-bar {
    background-color: rgb(126, 96, 234);
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
}
.logo{
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-right:auto;
}
.logo{
    height: 40px; 
    position: relative;
}
.nav-button{
    background-color: rgb(110, 78, 227);
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    margin: 2em;
    cursor: pointer;
    border-radius: 10px;
}
.nav-button:hover {
    background-color: white;
    color: black;
}
section{
    background-color: rgb(171, 155, 228);
}
.info{
    background-color: rgb(126, 96, 234);
    color: white;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    text-align: center;
}
.perfil{
    display: flex;
    justify-content: space-evenly;
}
.perfil img{
    border: 3px solid rgb(126, 96, 234);
    border-radius: 50%;
    height: 50%;
    width: 25%;
    margin: 5em 5em 5em 15em;
}

.mine{
    display:flex;
    flex-direction: column;
    justify-content: center;
    margin: 5em;
    padding: 50px;
    font-family: Arial, Helvetica, sans-serif;
}
.mine h1{
    color: antiquewhite;
    font-size:35px;
    background-color: rgb(110, 78, 227);
    padding: 10px;
    border-radius: 10px;
    margin: 0;
}

.materia{
    background-color: rgb(147, 126, 225);
    display: flex;
    justify-content: space-around;
    padding: 2em 5em 3em;
    height: 100%; 
}

.team button{  
    background-color: rgb(110, 78, 227);
    color: white;
    border: 1px solid transparent;
    padding: 8px 16px;
    margin-left: 15px;
    cursor: pointer;
    border-radius: 10px;
}
/* responsive */
@media screen and (max-width: 768px) 
 {
    
}