html, body{
    height: 100%;
    margin: 0;
}
body{
    background-color: #000000;
    color:white;
}
#page{
    height: 100%;
    width: 100%;
}
#navbar{
    display: flex;
    height: 10%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size:30px;
}
#main{
    height: 80%;
    display: flex;
    justify-content: space-between; 
   
}

#left{
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100%;
    width: 20%;
    font-size:30px;
}
#right{
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100%;
    width: 20%;
    font-size:30px;
}
#centre{
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100%;
    width: 60%;
    font-size:30px;
}
#footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    width: 100%;
    padding: 5px;
    font-size: 30px;
    box-sizing: border-box;
}
img {
  width: 60px;
  height:60px;
  border-radius: 50%;
  object-fit: cover;
 
}
img {
  position: absolute;
  right: 10px;
  top: 95%;
  transform: translateY(-50%); 
}
