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

body {
  background-color: #000;
  font-family: sans-serif;
  /* position: relative; */
}

/* TOP MENU */
/* header {
  position: fixed;
} */

.menu {
  background-color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
  /* position: absolute; */
  /* Why isn't it working?  
  box-shadow: 0 4px 4px #000000; */
}

/* STYLING LINKS */
a:link {
  color: #313030;
  text-decoration: none;
}

a:visited {
  color: #313030;
  text-decoration: none;
}

a:hover {
  color: #313030;
  text-decoration: none;
  font-weight: lighter;
  text-decoration: underline;
}

a:active {
  color: #313030;
  text-decoration: none;
}

/* BIO INTRO AT 'ABOUT' */
.bio-intro {
  position: relative;
}

.avatar {
  float: left;
  position: absolute;
  width: 600px;
  height: 400px;
  margin-top: 30px;
  margin-left: 30px;
}

/* ABOUT DESCRIPTION */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 660px;
  height: 430px;
  background-color: #f8f8f8;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  margin-right: 40px;
}

h2 {
  color: #41af8b;
  font-size: 22px;
  font-weight: lighter;
  margin: 0 0 30px;
}

p {
  font-size: 16px;
  font-weight: lighter;
  margin-bottom: 20px;
}

/* FOOTER */
.copyright {
  color: #fff;
  font-size: 12px;
  font-weight: lighter;
  text-align: center;
  padding-top: 100px;
  margin-bottom: 0;
}
