.outgoing-links {
  color: #ADD8E6;
}

.container {
  height: calc(100vh - 64px);
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
}

.wrapper {
  width: 50%;
}

.scroll-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.fixed-wrapper {
  position: fixed;
  right: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 60px;
  margin-top: 20px;
  font-family: 'Roboto', sans-serif;
  color: white;
}

.links {
  margin: 20px 0 10px;
}

.lb {
  font-style: italic;
}

.date {
  margin: 0 100px 20px 0;
  color: #DADEDF;
}
.content {
  color:white;
}

@media only screen and (max-width: 1094px) {
  .fixed-size-container {
    margin: 0 auto;
  }
  .container {
    flex-direction: column;
    align-items: center;
  }
  .fixed-wrapper {
    position: relative;
    right: auto;
    top: auto;
    height: auto;
  }
  .title {
    font-size: 40px;
    margin-top: 10px;
  }
  .date {
    margin: 0 20px 10px 0;
  }
  .wrapper {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .fixed-size-container {
    max-width: 90vw;
    max-height: 20vh;
  }
}

@media (min-width: 769px) and (max-width: 1094px) {
  .fixed-size-container {
    max-width: 90vw;
    max-height: 30vh;
  }
}

#myCarousel {
  width: 500px;
  margin: 0 auto;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.fixed-size-container {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fixed-size-container img,
.fixed-size-container video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}

.background {
  background-image: url('../images/project-background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}