:root {
  --color-background: #232323;
  --color-text-light: #f6f6f6;
}

body {
  font-family: "Ubuntu", sans-serif;
  background-color: var(--color-background);
  color: var(--color-text-light);
  min-height: 100vh;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 10px;
}

.avatar {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: -100;
}

svg {
  width: 50%;
}

.facebook-logo {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 30%;
}

h1,
h2 {
  font-weight: 400;
}

header {
  margin: 10vh 0 0 10%;
  padding-right: 10%;
}

.h1-big {
  font-size: 8rem;
  margin-bottom: 0;
}

.subtitle {
  font-size: 2rem;
}

.contact-details-container {
  margin: 15vh 0 0 10%;
  z-index: 100;
}

.contact-line {
  font-size: 1.8rem;
  margin: 10px;
  margin-left: 0px;
  font-weight: 100;
}

.contact-link {
  text-decoration: none;
  color: var(--color-text-light);
  transition-property: all;
  transition-duration: 0.5s;
}

.contact-link:hover {
  color: var(--color-background);
  background-color: var(--color-text-light);
}

#cs-link {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 630px) {
  header {
    margin-left: 0;
  }
  .h1-big {
    font-size: 15vw;
  }
  .subtitle {
    font-size: 8vw;
  }
  .contact-details-container {
    margin-left: 0;
  }
}

@media screen and (max-width: 300px) {
  .contact-line {
    font-size: 1rem;
  }
}
