/* Brand Colors */

:root {
  --grey: #7C7B74;
  --lgrey: rgba(124, 123, 116, 0.3);
  --red: #F53003;
  --lred: rgba(247, 47, 2, 0.2);
  --black: #000000;
  --white: #FFFFFF;
}

/* Global Styles */

body { 
  background: var(--white);
}
p, li {
  line-height: 1.8;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: var(--grey);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
strong {
  color: var(--black);
}

/* 404 */

#fourohfour {
  width: 100%;
  height: 100vh;
  padding: 40vh 0;
  text-align: center;
}
#fourohfour h2 {
  margin-bottom: 1rem;
  color: var(--red);
}
#fourohfour p {
  color: var(--black);
}
#fourohfour span {
  color: var(--red);
}
#fourohfour a {
  text-underline-offset: .5rem;
  color: var(--black);
}
#fourohfour a:hover {
  color: var(--red);
}


/* Header */

header img {
  height: 75px;
  width: 75px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}


/* Page Hero */


  
  
  
  

#hero h1 {
  
  color: var(--black);
  padding: 2rem 0 1rem;
  font-weight: 400;
}
#hero span {
  color: var(--red);
}

#hero > .container {
  border-left: 2px solid var(--lred);
}
#test {
  padding: 20rem 2rem 10rem;
}
#hero p {
  
  color: var(--grey);
  margin-bottom: 4rem;
}


/* Responsive headings fonts for smaller screens */

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  #hero p {
    font-size: 1.5rem;
  }
}

/* End Global Styles */



/* DSO Players */

#players {
  padding: 10rem 0;
  background-color: var(--lred);

}
#players h2 {
  font-size: 4rem;
  color: var(--black);
  margin: 5rem 0 3rem;
}
#players p {
  color: var(--black);
  font-size: 1.2rem;
}
#players .player-card {
  background: var(--white);
  border-radius: 3px;
  padding: 1rem 1.5rem;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
}
#players .player-card p {
  margin-bottom: 0.5rem;
  color: var(--black);
  font-size: 1rem !important;
}
#players .player-card h4 {
  font-weight: 400;
  font-size: 1rem;
  color: var(--black);
}
#players .player-card img {
  width: 5rem;
  height: 5rem;
  margin-right: 1.5rem;
  border-radius: 5px;
}


#course {
  background-color: var(--black);
  padding: 6rem 0;
}
#course h3 {
  color: var(--white);
}
#course h5 {
  color: var(--red);
}
#course h2 {
  color: var(--red);
}
#course .c-descp {
  font-size: 1.125rem;
}
#course ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#course ul li:last-child {
  border-bottom: none;
}
.chapter {
  border-bottom: 1px solid var(--grey);
  padding: 0.50rem;
}
.chapter p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 200;
  font-size: 1.25rem;
}
.chapter span {
  margin-right: 16px;
}

#topics {
  padding: 4rem 0;
}
#topics h2 {
  font-size: 2rem;
}
#topics h4{
  text-transform: uppercase;
  color: var(--red);
}
#topics h5 {
  font-size: 1rem;
  color: var(--red);
  font-weight: 400;
}
#topics ul {
  list-style: none;
}
.topic-item {
  border-bottom: 1px solid var(--lgrey);
}
.topic-item:last-child{
  border-bottom: none;
}
.topic-link {
  text-decoration: none;
  transition: all .2s cubic-bezier(1,0,0,1);
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  width: 100%;
  display: flex;
  color: var(--black);
  font-size: 1.25rem;
}
.topic-link:hover { 
  padding-left: 1rem;
  background-color: var(--lred);
  color: var(--black);
}
.topic-link:hover .arrow-icon {
  opacity: 1;
}
.t-badge {
  font-size: 10px;
  vertical-align: middle;
  margin: 0 .5rem;
  font-weight: 400;
}
.arrow-icon { 
  transition: opacity .2s cubic-bezier(1,0,0,1);
  opacity: 0;
  margin-right: .5rem;
}

/* Author */

#author {
  padding: 4rem 0;
  background: var(--black);
}
#author img {
  border-radius: 100%;
  max-height: 200px;
  max-width: 200px;
}
#author .author-img {
  text-align: center;
}
#author h4 {
  color: var(--white);
  font-size: 2rem;
}
#author p {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 1.125rem;
}
#author a {
  color: var(--red);
  font-weight: 400; 
  text-decoration: none;
}
#author a:hover {
  color: var(--white);
}

/* Footer */

footer {
  background: var(--black);
  padding: 1.5rem 0;
}
footer p {
  text-align: center;
  color: var(--white);
  font-size: 0.75rem;
}

/* Guide */

#guide-hero {
  padding: 12rem 0 8rem;
  background: var(--lred);
}
#guide-hero h5 {
  text-align: center;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .1rem;
}
#guide-hero h1 {
  text-align: center;
  color: var(--black);
  padding: 1rem 0 2rem;
}
#guide-hero p {
  text-align: center;
  color: var(--grey);
  margin-bottom: 4rem;
}
#guide-content {
  padding: 4rem 0;
}
#guide-content h2, #guide-content h3 {
  padding: 2rem 0 1rem;
  color: var(--red);
}
#guide-content h2 {
  font-size: 2rem;
}
#guide-content h4 {
  padding: 1.25rem 0 1rem;
  color: var(--black);
}
#guide-content p, ul, li {
  color: var(--black);
  font-size: 1.125rem;
}
#guide-content strong {
  color: var(--black);
  font-weight: 400;
}
#guide-content em {
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.25rem;
}
#guide-content blockquote {
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}
#guide-content img {
  border: 1px solid var(--lred);
  max-width: 100%;
  width: 100%;
}
#guide-content li {
  margin-bottom: .5rem;
}
#guide-content .guide-navigation {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#guide-content a {
  color: var(--black);
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 0.1rem;
}
#guide-content a:hover {
  color: var(--red);
}


