:root {
  --primary: #fff;
  --secondary: #000d1c;
  --txt: #333;
  --txtalt: #f4f4f4;
  --box: #fff;
  --border: #333;
  --accent1: #fc0;
  --accent2: rgb(93, 187, 222);
  --accent3: #e6e7ee;
  --accent4: rgb(59, 59, 59);
  --point: #fff;
  --label: #4699d2;
  --title: #333;
  --cleek: rgb(93, 187, 222);
  --slider: rgb(79, 79, 79)
}

.dark-mode {
  background-color: var(--secondary);

  --border: #747d90;
  --box: #1a2634;
  --accent1: #2f3c4d;
  --accent2: #2f3c4d;
  --accent3: #2f3c4d;
  --accent4: #2f3c4d;
  --res: #29333f;
  --point: #f0f3f4;
  --label: #4699d2;
  --txt: #e1e1e1;
  --title: #4699d2;
  --cleek: #4699d2;
  --slider: #4699d2;
}


body {
  font-size: 16px;
  font-family: Helvetica, sans-serif;
  color: var(--txt);
  text-align: justify;
  text-justify: inter-word;
}

.container {
  margin-top: 70px;
  margin-left: 10%;
  width: 80%;
  display: inline-block;
  font-size: 16px;
  font-family: Helvetica, sans-serif;
  color: var(--txt);
  text-align: justify;
  text-justify: inter-word;
}

a:link {
  text-decoration: none;
  color: var(--label);
  cursor: pointer;
}

a:visited {
  text-decoration: none;
  color: var(--label);
}

::selection {
  background: #222;
  color: var(--accent1);
  text-shadow: 0 -1px 0 #000;
}

.titlu {
  margin-top: 40px;
  border: 1px solid var(--title);
  padding: 10px;
  border-radius: 30px 30px 0 0;
  padding-left: 15px;
  width: auto;

  background-color: var(--box);
  margin-top: -48.5px;
}

.inapoi {
  display: block;
  border: 1px solid var(--txt);
  padding: 10px 10px 10px 10px;
  width: 200px;
  border-radius: 0 0 20px 20px;
  background-color: var(--accent1);
  margin-bottom: -1px;
}

.home--link :hover {
  cursor: pointer;
}