:root {
  --font: "Karla", "Karla", sans-serif;
}

body {
  background-color: rgb(243, 242, 242);
}

.fullscreen-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
}

/*-------------------------
    Scrollbar
-------------------------*/
::-webkit-scrollbar {
  background: white;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 20px;
}

.photo {
  display: block;
  margin: 35px auto 20px;
  border-radius: 50px;
  width: 100px;
  height: 100px;
}

.username {
  display: block;
  text-align: center;
  text-decoration: none;
  color: white;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
}

.links {
  display: block;
  margin: 27px auto;
  width: auto;
  max-width: 675px;
}

.link {
  display: block;
  transition: background-color 0.2s, color 0.2s;
  opacity: 80%;
  margin-bottom: 20px;
  border: 2px solid black;
  border-radius: 10px;
  background-color: #212121;
  padding: 17px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: bold;
}

.link:hover {
  border: 2px solid black;
  background-color: #fff;
  color: rgb(68, 70, 77);
}
