*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
}

nav{
    background-color: black;
}

.navbar ul{
   width: 100%;
   list-style: none;
   display: flex;
   justify-content: flex-end;
   align-items: center; 
}

.navbar li {
    height: 50px;
}

.navbar a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

nav a:hover{
    background-color: gray ;
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgb(137, 135, 135);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
 }

.sidebar a {
    width: 100%;
 }





h1{   
    text-align:center;
}
p{
    text-align:center;
    color:white;
}
.container {
    margin: auto;;
    height: 10%;
    width: 50%;
    border-radius: 10px;
    background-color:black;
}

.profile {
    height: 25%;
    width: 25%;
    padding: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}