* {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  color: white;
}
:root {
  --nav-height: 120px;
}
body {
  background-color: #e7e7e7;
  animation: fadeIn 0.3s ease;
  transition: all 0.5s ease;
  overflow-x: hidden;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
}
nav img {
  width: 100px;
}
nav {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-right: 40px;
  min-height: 100px;
  background-color: transparent;
  z-index: 2;
}
nav .n-middle {
  gap: 35px;
  display: flex;
}
nav a {
  font-weight: 700;
  color: #c4c4c4;
}
.active{
  color: rgb(255, 255, 255);
}
