*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

nav {
  position: fixed;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  background: #141414;
  box-shadow: inset 0 -1px 0 #c5c5c6;
}

.nav-icon {
  display: flex;
  text-decoration: none;
  align-items: center;
  margin-right: 20px;
}

.nav-icon img {
  height: 50px;
  margin-left: 10px;
}

.navlinks-container a {
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #b3b3b3;
  display: inline-block;
  position: relative;
}

.navlinks-container a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: #b3b3b3;
  transition: transform 0.3s ease-out;
}

.navlinks-container a:hover::after {
  transform: scaleX(1);
}

section {
  width: 100%;
  height: 100vh;
  background: #d3aa6d;
  padding: 80px;
  color: black;
}
section h1 {
  font-size: 20px;
  font-weight: 500;
  margin: 20px auto;
}

section a {
  text-decoration: none;
}
