/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Eczar:wght@600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /*FONT 1*/
  font-family: 'Eczar', serif;
}

body {
  background: #1D1D1D;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-content: center;
  background: #373737;
  padding: 10px;
  font-weight: bold;
}

.nav div {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: rgba(255, 255, 255, 1);
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  transition: color .2s;
}

.nav .links a:hover {
  color: #D21402;
  cursor: pointer;
}

.nav .links {
  font-size: 20px;
}

.nav .links ul {
  display: inline-flex;
  list-style: none;
}

.nav .links ul li a {
  text-decoration: none;
  margin: auto;
  color: white;
  padding: 10px 10px;
}
