
header{
    background-color: rgb(239, 176, 2);
}
header img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
header nav{
    display: flex;
    justify-content: space-between;
}
header nav ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
}
header nav ul li{
    padding: 20px;
}
header nav ul li a{
    text-decoration: none;
    color: aliceblue;
}
#container{
    display: flex;
    align-items: center;
}
#container img{
    width: 300px;
    height: 300px;
     border-radius:50%;

}
body{
    background-color:rgb(18, 128, 80);
}
.content{
    background-color: rgb(248, 42, 10);
}
.content button{
    background-color: rgb(18, 131, 129);
    color: beige;
    border:none;
    border-radius:20px;

}
footer{
    background-color: rgb(161, 255, 127);
    color: brown;
    border-radius: 20px;
    bottom:0;
    text-align: center;
    width: 700px;



}
