@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
*{
    margin:0;
    padding:0;
    font-family: play;
  }
  h1{
      text-align: right;
  }
  .main-container {
    padding: 20px;
    min-height: 100vh;
    width: 100%;
    background-color: #1e1f26;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

  }
  .author_image {
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    max-width: 720px;
    height: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 20px 20px 20px 10px rgba(0, 0, 0, 0.2);
    z-index:1 ;
  }
  img{
    width: 70px; 
  }
  .info-box{
    width: 100%;
    max-width: 720px;
    height: auto;
    margin-left: -150px;
    background-color: #303240;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: right;
    padding: 10px;
    border-radius: 8px;
    color: white;
    padding-left: 160px;
  }
  
.info-heading{
right: 1px;
width: 150px;
height: 113px;

}
.info-box h1 {
  font-size: 40px;
  font-weight: lighter;
  margin: 20px;
}
.info-box p {
  margin: 20px;
  font-weight: 500;
  line-height: 25px;
}
.info-box .theme-list {
  margin: 20px;
}


@media only screen and (max-width: 959px) {
  .main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
  }

  .info-box {
    font-size: 16px;
    padding: 100px 20px 20px 20px;
    width: 100%;
    height: auto;
    margin: 0;
    margin: -100px 0px 0px 0px;
    display: flex;
  }
  .info-box .theme-list {
    margin: 20px;
  }
}