html, body{
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
}

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 3;
}

.navbar a{
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

.navbar a.red{
  color: #F22F1D;
}

.kusama{
  font-family: "Outfit", sans-serif;
  text-align: left;
  font-size: 56px;
  font-weight: 700;
}

.red{
  color: #F22F1D;
}

.nav-right{
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  word-spacing: 2rem;
}

footer{
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: black;
  z-index: 5;
}

.footer_text{
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

main{
  padding-bottom: 200px;
}

h1{
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

h2{
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: white;
  margin-top: 0;
}

main p{
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  padding-right: 1rem;
}

.text-block{
  width: 43%;
  margin-left: 3rem;
}

.content-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.other_works{
  text-align: center;
}

.carousel{
  height: 30rem;
  position: relative;
  overflow: hidden;
}

.carousel .slide,
.carousel .slides{
  height: 100%;
  width: 100%;
}

.carousel .slides{
  position: relative;
}

.carousel .slide{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 1;
  opacity: 0;
}

.carousel .slide.moving{
  transition: all 0.3s;
}

.carousel .slide.left,
.carousel .slide.right,
.carousel .slide.center{
  opacity: 1;
}

.carousel .slide.center{
  transform: translateX(0);
}

.carousel .slide.left{
  transform: translateX(-100%);
}

.carousel .slide.right{
  transform: translateX(100%);
}

.carousel .controls{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 5;
}

.carousel [class*='control-']{
  pointer-events: initial;
}

.carousel .control-left,
.carousel .control-right{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 1rem;
  font-size: 4em;
  color: white;
}

.carousel .control-left{
  left: 14rem;
}

.carousel .control-right{
  right:14rem;
}

.carousel .control-pagination{
  display: flex;
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.carousel .control-dot{
  padding: 1rem;
  font-size: 2em;
  line-height: 1rem;
  transition: all 0.3s;
  position: relative;
  transform: scale(1, 1);
  text-shadow: 0 0 4px black;
}

.carousel .control-dot.active{
  transform: scale(1.5, 1.5);
  color: white;
}

.carousel .control-dot,
.carousel .control-left,
.carousel .control-right{
  cursor: pointer;
}

.carousel-text{
  text-align: center;
  margin-top: 0.5rem;
}

.carousel-text p{
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}