* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.conteiner {
    display: flex;
    width: 100%;
    height: 83vh;
    flex-direction: column;
    justify-content: space-between;
}

/* LOGO */
.logo {
    width: 100%;
    height: 15vh;
    display: flex;
    border-bottom: 3px solid;
    color: black;
    margin-bottom: 10px;
}

.right_logo {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    margin-bottom: 10px;
}

.user_ava{
    width: 5%;
    height: 90%;
    /* padding-bottom:5%; */
    /* border-radius: 50%; */
    overflow:hidden;
    background-repeat: no-repeat;
    background-size:cover;
    border: 2px solid rgb(0, 0, 0);
    margin-right: 5px;
    background-position: center center;
}
@media screen and (max-width:900px){
    .user_ava{
        width: 10%;
    }
}
@media screen and (max-width:500px){
    .user_ava{
        width: 15%;
    }
}
.left_logo {
    width: 15%;
    margin-bottom: 10px;
}

.text_logo {
    background-image: url(../image/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    color: white;
    display: flex;
    /* flex-direction: column; */
    justify-content: end;
    align-items: center;
}
.text_logo a{
    margin-right: 3px;
}
.user_data {
    font-size: 15px;
}


/*FOOTER */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    font-weight: 400;
    padding: 5px;
    border-top: 3px solid black;
    margin-top: 10px;
}

.footer a {
    font-style: normal;
    color: rgb(63, 133, 63);
}

.footer a:hover {
    font-weight: 700;
}