html, body {
    height: 100%;
    width: 100;
}

body {
    margin: 0;
    background: #DCD5C5;
    font-family: "Segoe UI";
    display: flex;
    height: 100%;
}

.barremenu {
    background-color: #DCD5C5;
    width: 25%;
    border: 3px solid black;
    padding: 20px;
    height: 96%; 
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #423B35;
    object-fit: cover;
}

.barremenu button {
    background-color: #CBB8A9;
    border: 2px solid black;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.content {
    padding: 15px;
    width: 100%;
}

.content h1 {
    text-align: center;
    font-family: Times;


} 

.panel {
    display: inline-block;
    border: 3px solid black;
    padding: 15px;
    background: #B8B997;
    border-radius: 10px;
    margin-bottom: 20px;
}

