body {
    background-color: rgb(10, 10, 10);
    max-width: 700px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    font-family: sans-serif;
    color:rgb(214, 214, 214);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
    font-size: 30pt;
    text-align:left;
    margin:0;
}
h2{
    margin-top:25pt;
}
p{
  font-family: sans-serif;
}
footer {
  margin-top: 20px;
  border-top: 1px solid rgb(104, 104, 104);
  padding-top: 10px;
}
a {
  color: rgb(173, 232, 255); 
  text-decoration: none;
}
a:visited {
  color: rgb(159, 107, 255);
}
a:hover {
  color: rgb(173, 232, 255);
  text-decoration: underline;
  }

.avatar {
    width: 150px;
    height: 150px;
}

/* Works */
.works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap:10px;
    justify-items: center;
    align-items: center;
}
.item { 
  width: 100%;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* chia đều giữa ảnh và caption */
  padding: 10px;
  margin:0px;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid;
  border-color: rgb(104, 104, 104);
  }
.item figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }
.item img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
figcaption{
  font-size: 9pt;
  text-align: center;
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*
.sidebar {
  display: flex;
  flex-direction: column;
  width: 100px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left:10px;
  height: 100vh;
  padding: 1rem;
  overflow-y: auto; 
}

.sidebar-top {
  flex-shrink: 0;
}
.sidebar-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.container {
   margin-left: 100px;
  padding: 1rem;}
  */