@font-face {
  font-family: luxroman;
  src: url(res/Fonts/luxroman.ttf);
}

@font-face {
  font-family: archand;
  src: url(res/Fonts/archand.ttf);
}

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

body {
  background-color: #202020;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #063c58;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main_body {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-items: center;
}

.navbar {
  display: flex;
  justify-content: center;
}


.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

h1 {
  color: white;
  font-family: "luxroman", sans;
}

p {
  color: white;
  font-family: "archand", sans;
  font-size: 1.3em;
}
