/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .title {
    font-size: 5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .title {
    font-size: 6rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .title {
    font-size: 7rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .title {
    font-size: 8rem;
  }
}

@font-face {
  font-family: Acorn;
  src: url(../assets/fonts/acorn.woff);
}

:root {
  --blue: rgb(13, 110, 253);
}

body {
  font-family: "Open Sans", sans-serif;
  /*font-family: "Acorn", Arial, sans-serif;*/
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1em;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Acorn", sans-serif;
  font-size: 10em;
}

h2 {
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 3em;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
a {
  all: unset;
}

.title {
  font-size: 4rem; /* Default font size */
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.feature-icon-small {
  width: 1.5em;
  height: 1.5em;
}

.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

#profile-image {
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  margin-top: -30px;
  transition-behavior: lazy;
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: ease-in-out;
  width: 340.796875px;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.sticky-element {
  position: sticky;
}

.logo {
  color: var(--blue);
  text-transform: uppercase;
  font-family: "Acorn", sans-serif;
  font-size: 1.25rem;
  padding: 0;
  margin: 0;
}

/* NAV BAR */
#navigation-bar {
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#navigation-bar header {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  width: 600px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#navigation-bar header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  list-style: none;
  margin-top: 17px;
  margin-left: -30px;
}

.nav-item {
  padding: 8px 15px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.nav-link.active {
  color: var(--blue);
}

.timeline-content {
  margin-top: 20px;
}
