* {
  margin: 0;
 
  font-family: "Roboto Condensed", sans-serif;
}
body {
  background: fixed linear-gradient(to bottom, #331d2c, #a78295, #efe1d1);
}
.main {
  display: flex;

  justify-content: center;
  gap: 10vw;
}

.info {
  width: fit-content;
  margin-top: 17vh;
}

#image img {
  height: 50vh;
  width: 18vw;
  margin: 100px;
  margin-top: 200px;
}
#header {
  padding: 2%;
  background-color: #111111cb;
  height: 45px;
  color: #efe1d1;
  display: flex;
  justify-content: center;
  align-items: center;
}

header a {
  text-decoration: none;
  color: #efe1d1;
  font-size: 2.5rem;
  margin: 10px;
}
header a:hover {
  background-color: #302f2fcb;
}

#footer {
  height: 8vh;
  width: 100%;
  border-color: #331d2c;
  background-color: #331d2c;
  color: #efe1d1;
  bottom: 0;
  text-align: center;
  font-size: 2rem;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.name {
  align-items: center;
  font-size: 6rem;
}
.position-container {
  font-size: 2.5rem;
}

#socials {
  width: 20vh;

  display: flex;
  justify-content: center;
}
#socials img {
  height: 5vh;
  width: 5vh;
}

.project-slideshow {
  display: flex;
  justify-content: center;
  position: relative;
}
.slide-container {
  position: relative;
  margin-top: 15vh;
  margin-bottom: 15vh;
  background-color: #f5deb3;
  border-radius: 15px;
  height: 60vh;
  width: 70vw;
}
.slide-container ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
  

}
.picture-bio{
position: absolute;
bottom: 0%;
width: 100%;
height: 30%;
outline: solid;
z-index: 2;
background-color: #111111cb;
}
.picture-bio p {
  color: #fff; 
  font-size: 3em;
}
.slide img{
  width: 100%;
  height:100%;
  object-fit:fill;
 
 
}
.bio{
  margin-top: 5vh;
  height: 25vh;
  width: 32vw;
}
.bio p{
text-align: justify;  font-size: 2.3rem;
}
.slide[data-active]{
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}
.carousel-button{
  position: absolute;
  background:none;
  border: none;
  font-size: 4rem;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  border-radius: .25;
  cursor: pointer;
  padding: 0.5rem;
background-color:rgba(0,0,0,.1) ;

}
.carousel-button:hover,.carousel-button:focus{
  color: white;
  background-color: rgba(0,0,0,.2);
}
.carousel-button:focus{
  outline: 1px solid black;
}
.carousel-button.prev{
  left: 1rem;
}
.carousel-button.next{
  right: 1rem;
}

