@import "_body.css";
@import "_menu.css";
@import "_responsive.css";

/*My headings*/
h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

.lg-heading {
  font-size: 6rem; /*htlm default font size is 16px(1rem)*/
}

.sm-heading {
  margin-bottom: 2rem;
  padding: 0.2rem 1rem;
  background-color: #444;
  color: #ffff;
  opacity: 0.5; /*check if this works well*/
}

.header {
  position: fixed;
  z-index: 2;
  width: 100%;
}

.text-secondary {
  color: #ffd700; /*gold*/
}

main {
  padding: 4rem;
  height: 100%;
}

/*Icons*/
.icons a {
  color: #ffffff; /*white*/
  padding: 0.4rem;
}

.icons a:hover {
  color: #ffd700; /*gold*/
  transition: color 0.5s ease-out; /*creates an ease out transition between colors, everytie the users hovers over the icons*/
}
