html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #272727;
  background-image: url('../img/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

html, body {
  scrollbar-width: none; /* Firefox */
}

/* Navbar shit innit g */

nav {
  display: flex;
  align-items: center;
  background-color: #232323;
  border-bottom: 2px solid #00C8AB;
  padding: 10px;
  height: 50px;
}

nav img {
  margin-right: 20px;
  background-color: rgba(100, 100, 100, 0.575);
  height: 50px;
  width: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

nav a{
  color: #fff;
  text-decoration: none;
}

nav ul li {
  display: inline;
  background-color: rgba(100, 100, 100, 0.575);
  padding: 10px 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li:hover {
  background-color: rgba(95, 126, 122, 0.8);
  cursor: pointer;
}