@import "header.css";
@import "navigation.css";
@import "footer.css";
@import "icons.css";

:root {
  --body-color: #f0edeb;
  --theme-color: #004aad;
  --theme-color-dark: #092572;
  --theme-color-light: #ffffff;
  --news-block-color: #ffffff;
  --accent-color: #0e8ede;
  /* --accent-color: #2A8EC7; */
  --text-color: black;
  --text-menu-color: white;
  --light-text-color: #a8a8a8;

  --navbar-height: 80px;
}

body {
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  background-image: radial-gradient(circle, #5de0e6, var(--theme-color));
  background-attachment: fixed;
}

.main {
  width: 100%;
  margin: 0px;
  padding: 0px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--body-color);
}

ul.list {
  padding-inline-start: 50px;
}

.list a {
  color: var(--text-color);
}

ul.silent-list {
  padding-inline-start: 50px;
  list-style-type: none;
}

li::marker {
  color: var(--accent-color);
}

.alert {
  color: red;
  font-weight: bold;
}