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

html {
  font-size: 10px;
  font-family: "Roboto Cn", sans-serif;
}

p{
  color: #000000;
}

body {
  overflow-x: hidden;
}

header.a {
  text-decoration: none;
  color: #eee;
}

header {
  width: 100%;
  height: 15vh;
  background: #000000;
  background-size: cover;
}

.container {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
}

nav {
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.6rem;
}

img {
  transform: translateX(-100rem);
  animation: slideIn 0.5s forwards;
}

nav ul {
  display: flex;
}

nav ul li {
  list-style: none;
  transform: translateX(100rem);
  animation: slideIn 0.5s forwards;
}

nav ul li:nth-child(1) {
  animation-delay: 0s;
}

nav ul li:nth-child(2) {
  animation-delay: 0.2s;
}

nav ul li:nth-child(3) {
  animation-delay: 0.4s;
}

nav ul li:nth-child(4) {
  animation-delay: 0.6s;
}

nav ul li:nth-child(5) {
  animation-delay: 0.8s;
}

nav ul li a {
  padding: 1rem 0;
  margin: 0 3rem;
  position: relative;
  letter-spacing: 2px;
}

nav ul li a:last-child {
  margin-right: 0;
}

nav ul li a::before,
nav ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: crimson;
  left: 0;
  transform: scaleX(0);
  transition: all 0.5s;
}

nav ul li a::before {
  top: 0;
  transform-origin: left;
}

nav ul li a::after {
  bottom: 0;
  transform-origin: right;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
  transform: scaleX(1);
}

@keyframes slideIn {
  from {
  }
  to {
    transform: translateX(0);
  }
}

.footer {
  height: 5vh;
  padding: 1.5vh;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: black;
  color: red;
  text-align: center;
}