html, body {
  margin: 0px;
  padding: 0px;
}

body {
  background: rgb(0,0,0);
  background-image: url(../../assets/img/bkground.jpg);
  background-size: cover;
  overflow-x: hidden;
  width: 100vw;
  height: 100vh;
  color: rgb(100,100,100);
}

.content {
  height: 100vh;
}

a {
  color: rgb(205,53,57);
  text-decoration: none;
  transition: all 0.8s ease-in;
}

a:hover {
  color: rgb(100,100,100);
  text-decoration: none;
}

