.main {
  max-width: 1100px;
  max-height: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;

  margin: 30px 0 0 0;

  /* margin-left: auto;
     margin-right auto;
     Is a trick for centering an element horizontally
     without needing a container. */
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

.stars-header {
  max-width: 1100px;
  border-bottom-width: 1px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  margin: auto;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;

  z-index: -1;
}

.gu-logo-div {
  background-color: rgba(2, 76, 139, 1);
  position: absolute;
  margin: 90px 0 0 50px;
  height: 150px;
  width: 100px;
  cursor: pointer;
}

.stars-logo-div {
  height: 100px;
  margin-left: 20%;
  position: relative;
}

.gu-logo-img {
  margin-top: 20px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.stars-logo-img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.window-bar {
  border-radius: 10px 10px 0 0;
  background-color: rgb(37, 90, 158);
  height: 20px;
  padding: 15px;
  display: flex;
  flex-direction: row;
}

.window-search-bar {
  margin-left: auto; 
  margin-right: 0;
}

.search-bar-input {
  padding: 7px;
  border: none;
  border-radius: 3px;
}

.main-title {
  color: white;
  background-color: rgb(65, 65, 65);
  padding: 25px;
  text-align: center;
  font-size: 40px;
  font-style: bold;
}

.main-description {
  padding: 30px;
  background-color: lightgray;
  bottom: 0;
  height: 100%;
}

.bookmarks-div {
  display: flex;
  margin-left: auto;
  margin-right: 0;
}

.stars-bookmark-link {
  display: inline-block;
  margin: 0 15px;
}

.bookmark-button {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-style: bold;
  width: 50px;
  height: 90px;
  background-color: rgb(38, 130, 235);
  border-radius: 15px 0 0 0;
  border: none;

  cursor: pointer;
}