.focus{
  width: 100dvw;
  height: 100dvh;
  position: absolute;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Top bar of focus */
.focus .top{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: xx-large;
}

.focus .close{
  width: 25px;
  height: 25px;
  background: transparent;
  filter: var(--filter);
  position: absolute;
  right: 0px;
}

.focus .close img{
  width: 25px;
  height: 25px;
}

/* User login/signup (access) section */
.access{
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 25px;
  justify-items: center;
  background: var(--bg-200);
  border-radius: 25px;
  padding: 10px;
}

.access input{
  margin: 10px;
  width: 400px;
  background-color: var(--bg-300);
}

.access button{
  margin: 10px;
  background: var(--bg-100);
}

.access .info{
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.access .bottom{
  display: flex;
  border-top: 2px solid var(--bg-300);
  width: 400px;
  justify-content: center;
  align-content: center;
  padding: 15px;
}

/* Album note section */
.review{
  width: 75dvw;
  height: 75dvh;
  aspect-ratio: 2/1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-200);
  border-radius: 15px;
}

.review .info{
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.review .info .title{
  width: 100%;
  height: 50px;
  font: var(--large-font);
}

.review .info .row{

}