@import url(https://fonts.googleapis.com/css?family=Raleway:regular,600,800);

/* Colors */
/* variables */
:root {
  /* Colors */
  --bg-color: #101212;
  --text-heading-color: #dfe0e2;
  --text-body-color: #bebebe;
  --link-hover-color: #9f9f9f;
  --text-selection-color: #73856e;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Font Weight */
  --weight-small: 400;
  --weight-semibold: 600;
  --weight-bold: 800;

  /* Max width */
  --max-width: 630px;
  --width-small: 600px;
  --width-medium: 1100px;
  --width-large: 1300px;
}


html {
  font-size: 120%;
  scroll-behavior: smooth;
}

/* Reset default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--text-body-color);
}

/* Ensure images and buttons are unselectable */
.profile-image,
.contact-links {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Main styling */
body {
  background: var(--bg-color);
  color: var(--text-body-color);
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
}

/* Hero section */
#hero {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.profile-image {
  width: 180px;
  border-radius: 50%;
}

h1,
h2 {
  color: var(--text-heading-color);
}

/* Responsiveness */
@media (max-width: 600px) {
  html {
    font-size: 100%;
  }
}
