.login-button {
  cursor: pointer;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-weight: bold;
  box-shadow: 0px 0px 100px 10px rgba(255, 255, 255, 0.5);
  background-color: transparent;
  padding: 5px 10px;
  border: solid 2px rgba(245, 245, 245, 0.9);
  border-radius: 0.5rem;
  color: rgba(245, 245, 245, 0.9);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease-out;
  z-index: 3;
}

.login-button:hover {
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.fullscreen-button,
.stop-rotate-button,
.share-button,
.like-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: rgba(245, 245, 245, 0.9);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease-out;
  z-index: 3;
}

.fullscreen-button:hover,
.stop-rotate-button:hover,
.share-button:hover,
.like-button:hover {
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

.fullscreen-button:active,
.stop-rotate-button:active,
.share-button:active,
.like-button:active {
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.tools-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 2rem;
  right: 2rem;
  gap: 0.5rem;
  flex-flow: row-reverse;
  z-index: 3;
}

.control-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 1rem;
  gap: 0.5rem;
  z-index: 3;
}

.control-btn-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  border: none;
  text-align: center;
  background-color: transparent;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: rgba(245, 245, 245, 0.9);
  font-size: 2rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease-out;
  z-index: 3;
}

.control-btn-container button:hover {
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

.control-btn-container button:active {
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
