body{
    background-image: url(home.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

    margin: 0;
    padding: 0;
}

h1{
    text-align: center;
    font-size: 10vh;
}

.container{
  display:flex;
  flex-direction: row;
  
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.container img{

  width: 350px;
  height: 350px;
  border-radius: 100%;
  justify-content: center;

}


/* Style the list inside the menu */
*{

  margin: 0;
  padding: 0;
  list-style: none;
 text-decoration: none;
 box-sizing: border-box;

}
.sidebar{
  top: 24vh;
  position: fixed;
  left: 0;
  width: 300px;
  height: 100%;
  background: #042331;

}
.sidebar header{

  color: azure;
  text-align: center;
  background-color: rgb(3, 31, 31);
  height: 50px;
  line-height: 50px;
  font-size: 20px;

}
.sidebar ul a{
  display: block;
  font-size: 15px;
  text-decoration: none;
  width: 100%;
  height: 100%;
  color:azure ;
  box-sizing: border-box;
  padding-right:30px;
  border-top: 1px solid rgba(255,255,255,.1) ;
  border-bottom: 1px solid black;
  transition: 1s;
  letter-spacing: 2.5px;

}
  
  
  

ul li:hover a{
  padding-left: 20px;
}
.sidebar ul a i{
  gap: 15px;
  text-transform: lowercase;
  display: flex;
  line-height: 50px;
  text-decoration: none;
  

}

.sidebar footer{
  position: fixed;
  color: azure;
  font-size: 10px;
  bottom: 0;
  text-align: center;
  margin-left: 100px;

  
}