body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 1;
  transition: opacity 1.0s;
  transition: background-color 0.6s ease;
  font-family: sans-serif;
  text-align: center;
  overflow-x: hidden;
}
 
.fa {
  font-size: max(3vw, 40px);
  padding: max(1.5vw, 16px);
  text-decoration: none;
  text-align: center;
  color: rgb(61, 61, 61);
  transition: color 0.3s ease;
}
 
.fa:hover {
    color: #b90000;
}
 
.title-text {
  text-align: center;
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: whitesmoke;
}
 
h1{
  display: inline;
  font-size: max(2.5vw, 50px);
}
 
.container {
  position: relative;
  height: 100%;
}
 
.content {
  padding: 20px;
}
 
.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0px;
  background-color: #333;
}
 
#expandButton {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #fff;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 9998;
  transition: background 0.3s ease;
}
 
#expandButton:hover {
  background: rgba(185, 0, 0, 0.7);
}
 
.expanded-content {
  position: fixed;
  top: 0;
  left: 100%;
  width: 37%;
  height: 100%;
  background-image: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
  opacity: 1;
  transition: left 0.6s ease, opacity 0.6s ease;
  padding: 20px;
  z-index: 9999;
  overflow: scroll;
}
 
#closeButton {
  position: absolute;
  top: 10px;
  left: 90%;
  background: none;
  border: none;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}
 
#closeButton:hover {
  color: #b90000;
}
 
.profile {
  max-width: 350;
  margin: 0 auto;
  padding: 20px;
  text-align: justify;
}
 
.profile p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}