@import url(./variables.css);

body {
  background: var(--background);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
}

main {
  position: relative;
  width: 80%;
  margin: auto;
}

header {
  padding: 25px 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header i[class^=icon] {
  margin-left: 16px;
}

#about {
  padding-top: 30px;
  margin: auto;
  max-width: 600px;
} 

#profile {
  position: absolute;
  top: 0;
  right:0;
  z-index: -2;
}

h1 {
  font-size: 50px;
  font-family: "Playwrite AU QLD";
}

h1 ~ p {
  font-size: 18px;
}

p {
  line-height: 1.5;
  opacity: 0.75;
}

main a {
  position: relative;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

main a::after {
  position: absolute;
  left:0;
  bottom: -2px;
  content: "";
  width: 100%;
  height: 5px;
  background-color: rgba(0, 183, 255, 0.5);
  z-index: -1;
  transition: all 0.1s;
}

main a:hover::after {
  content: "";
  height: 110%;
}
