* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8ebe9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  width: 70%;
  height: 90%;
  border-radius: 0px;
  margin: 0;
  padding: 0px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.container .left-panel {
  background-image: url(./img/background.jpg);
  color: #b4b4b4;
  padding: 0;
  width: 35%;
  flex: 1;
  background-size: cover;
  background-position: center;
}

.left-panel .back {
  display: flex;
  align-items: center;
  padding: 20px;
}

.back-btn {
  display: inline-block;
  cursor: pointer;
  color: #938f8f;
  margin-left: 17px;
  padding: 30px 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.back-btn:hover {
  cursor: pointer;
  color: black;
}

.container .right-panel {
  background-color: #ffffff;
  color: #030303;
  padding: 60px 50px;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
}

#bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

ul{
  list-style: none;
  display: flex;
  margin-top: -15px;
  gap: 20px;
}

ul .not-active {
  color: #938f8f;
  font-size: 10px;
}

ul .not-active:hover {
  cursor: pointer;
  color: black;
}

ul .active {
  color: black;
  font-size: 10px;
}

a{
  text-decoration: none;
}

h1 {
  font-size: 42px;
  font-family: 'Georgia', serif;
  font-weight: 500;
  margin: 10px 0;
}

.dash {
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: black;
  margin-left: 10px;
  transform: translateY(-5px); 
}

.container .left-panel p{
  font-size: 18px;
  color: black;
}

.author-description {
  font-family: 'Georgia', serif;
}

.author {
  font-weight: bold;
}

.preview-description {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.preview-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 180px;
}

.preview-overlay {
  position: relative;
  width: 80px;
  height: 80px;
}

.preview-play {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
  padding: 8px;
  width: 30px;
  height: 30px;
}

.preview-play:hover {
  cursor: pointer;
}

.preview {
  width: 140px;
  height: 80px;
  object-fit: cover;
  padding-left: 0;
}

.view-photos {
  font-size: 10px;
  color: black;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap; 
}

.view-photos:hover {
  text-decoration: none;
  cursor: pointer;
}

.description {
  font-size: 14px;
  line-height: 1.7;
  color: black;
  width: 100%;
  margin-left: 20px;
}
