html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f9;
}

.header {
    background: linear-gradient(90deg, #567cef, #18a571);
    color: white;
    text-align: center;
    padding: 25px;
    border: 2px solid white;
}

.menubar {
    background-color: #2e59d9;
    padding: 12px;
    text-align: center;
    border: 1px solid white;
}

.menubar a {
    color: white;
    margin: 0 15px;
    text-decoration: #2e59d9;
    font-weight: 500;
}

.menubar a:hover {
    color: black;
}

.main {
    display: flex;
    flex-direction: row-reverse; 
    min-height: 400px;   
}

.sidemenu {
    width: 20%;
    background-color: none;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidemenu button {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: none;
    background-color: #2e59d9;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.sidemenu button:hover {
    background-color: #2e59d9;
}

.content {
    width: 100%;
    padding: 30px;
    background-color: #2e59d9;
    border: 2px solid white ;
}

#output {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-height: 200px;
}

.footer {
    background-color: #2e59d9;
    color: white;
    text-align: center;
    padding: 20px;
    min-height: 100px;
    border:  1px solid white;
}

#output input {
    padding: 5px;
    width: 200px;
    margin-bottom: 5px;
}

#output button {
    padding: 5px 10px;
    margin-right: 10px;
    background-color: #4e73df;
    color: white;
    border: none;
    border-radius: 5px;
}

#output button:hover {
    background-color: #2e59d9;
}

#profile img{
    border-radius: 50%;
}

.profile{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
}

.profile-pic{
width:150px;
height:150px;
border-radius:50%;
border:3px solid white;
object-fit:cover;
}

.profile-info h1{
margin:0;
}

.profile-info p{
margin:0;
font-size:14px;
}