:root{
  --header-color: rgba(40,40,40,1);
}

@font-face {
  font-family: 'Inter';
  src: url("../assets/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf") format('truetype');
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter';
  /*background-color: #e6e6eb;*/
  margin: 0;
  height: 100vh;
  background-color: #e6e6eb; 
  background-image: radial-gradient(
    ellipse at 60% 30%, 
    #7476dc -90%, 
    transparent 40%
  );
  background-attachment: fixed;
  padding-top: 10vh;
}

.divider {
  border-top: 2px solid #ccc;
  margin: 100px 0;
  width: 100%;
}

.header-container{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 10vh;
  background-color: rgba(0,0,0,0.04);
  box-shadow: 0 2px 1px rgba(0,0,0,0.1);
}

.header {
  display: flex;
  align-items: center; 
  width: 80vw; 
  margin: 0 auto;
  height: 100%;
  padding-left: 1vw;
}

.header a{
  color: var(--header-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
}

.nav-item a:hover {
  color: rgba(0, 0, 0, 0.5);
}

.nav-item a.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
  font-weight: bold;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--header-color);
}

.group-name{
  font-weight: 400;
}

.brand h1 {
  transform: translateY(4px); 
}

.header-nav {
  margin-left: auto; 
  display: flex;
  gap: 20px;
  padding-right:17vw;
  height: 100%;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  height: 100%;
}
  
.header-nav li {
  padding-left: .5vw;
  padding-right: .5vw;
  font-size: 1.2rem;
  height: 100%;
}
.main-container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}

.navbar-nav .nav-item:not(:last-child) {
  border-right: 2px solid #F2F0EF;
}

.info-paragraph {
  padding-top: 2rem;
  padding: 2rem 1.5rem 0 1.5rem;
  font-size: x-large;
  font-weight: 500;
}

.portrait-card{
  background-color: rgba(242, 240, 239, .55);
  border: 1px;
  border-radius: 10px;
  border-color: rgba(0,0,0,0.2);
  border-style: solid;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}
.portrait-card:hover {
  box-shadow: 5px 5px 5px rgb(0 0 0 / 30%) !important;
  transform: translate(-1px,-1px);
}
 
.glide__track{
  height: 100%;
}
.glide__slides{
  height:100%;
}
.glide{
  height:100%;
  width: 80vw;
}
.glide__slide{
  background-color: rgba(242, 240, 239, .4);
  height: 70vh;
  border: 1px;
  border-radius: 10px;
  border-color: rgba(0,0,0,0.2);
  border-style: solid;
  padding: 5rem;
  padding-left: 8rem;
  padding-right: 8rem;
  margin: 5rem 0;
}

.glide__arrow {
  background: transparent; 
  border: 0px;
  border-radius: 4px;
  box-shadow: none;
  padding: 7px;
  transition: all 0.1s ease-in;
}

.glide__arrow:hover {
  background: rgba(51, 51, 51, .5);
  color: #ffffff;
}
#glide-timeline h2 {
  text-align: left;
  margin: 0 0 10px 0;
}

#glide-timeline hr {
  width: 100%;
  margin-bottom: 20px;
}


#glide-timeline .glide__slide{
  display: flex;
  flex-direction: column;
  height: 500px;
  padding: 20px;
  box-sizing: border-box;
}

.portrait-image-small{
  display: block;
  border: 2px solid #dddddd;
  width: 120px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.portrait-image-large{
  border: 2px solid #dddddd;
  width: 160px;
  margin-left: 5%;
  height: auto;
}


.outlined-text {
  color: var(--header-color);
}

.document-box{
  background-color: rgba(242, 240, 239, .4);
  border: 1px;
  border-radius: 10px;
  border-color: rgba(0,0,0,0.2);
  border-style: solid;
}

.footer{
  padding-top: 3%;
}
