* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  border: none;
  outline: none;
  font-weight: 300;

}

:root {
  --bg-color: #191919;
  --second-bg-color: #101010;
  --text-color: #fff;
  --other-color: #c6c9d8bf;
}

body {
  color: var(--text-color);
  background-color: var(--bg-color);
    height: 100%;
}

span {
  color: var(--other-color);
}

a:visited,
a:hover {
  color: inherit;
}

.modal-content {
  background-color: #242424;
  ;
}

#messages {
  padding: 1rem 10%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

section {
width: 100%;
  padding: 1rem 10%;
  background: inherit;
}

