* {
    padding: 0;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  height: 50px;
  padding: 0 20px;
}

/* Стили для логотипа сайта */
.navbar-brand {
  font-size: 20px;
  font-weight: 550;
  color: white;
  text-decoration: none;
  /* margin-right: 10vw; */
  margin-right: 50px;
}

/* Стили для контейнера ссылок навбара */
.navbar-links {
  display: flex; /* Центрирование ссылок по горизонтали */
  align-items: center;
  flex-grow: 1;
}

.navbar-link {
  margin: 0 30px;
  color: white;
  text-decoration: none;
}

.navbar-link:hover {
  text-decoration: underline;
}

/* Стили для таймлайна и точек */
.timeline {
  position: relative;
  height: 15px;
  background-color: #bebebe;
  margin-top: 50px;
}

.dot {
  position: absolute;
  width: 15px;
  height: 100%;
  background-color: #000;
  border-radius: 50%;
  bottom: 0;
  transform: translateX(-50%);
  cursor: pointer;
}

.dot-special {
  border-radius: 0;
  background-color: red;
  width: 5px;
}

.dot-special::after {
  content: attr(data-year);
  position: relative;
  left: -15px;
  top: 25px;
  display: inline-block;
  transform: rotate(60deg);
}

/* Стили для tooltip */
.tooltip {
  position: absolute;
  padding: 8px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  white-space: nowrap;
  padding: 15px;
  max-width: 600px;
  white-space: pre-wrap;
}

/* Стили для tooltip - активного состояния */
.tooltip.active {
  visibility: visible;
  opacity: 1;
}

/* Стили для крестика */
.tooltip-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px;
  cursor: pointer;
}

.tooltip a {
  color: #0000ff;
}

form {
  /* padding: 50px; */
  text-align: center;
}

.card {
  background-color: #bebebe;
  width: 200px;
  text-align: center;
  margin: 10px;
  /* display: flex; */
}

.name {
  font-weight: bolder;
}

.container {
  margin: 20px;
  display: flex;
}