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

  
  body {
    font-family: 'Faustina', serif;
    color: #262626;
  }
  
  body{
    background-color: #000;
  }
  .wrapper {
    background-color: white;
    width: 100%;
  }
  
  div {
    display: block;
  }
  
  .container {
    width: 50%;
    padding: 0 15px;
    margin: 0px auto;
  }

  .header-group .header-logo-container {
    width: 170px;
    margin: 0 auto;
    padding: 50px 0 25px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  a {
    background-color: transparent;
  }
  
  .header-group .header-logo-container .header-logo-circle {
    display: block;
    width: 170px;
    height: 170px;
    padding: 5px;
    border: 5px solid #000;
    border-radius: 50%;
  }
  
  .header-group .header-title {
    margin: 0 0 5px;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }
  
  
  .main-navigation{
    text-align: center;
    padding: 8px 0px ;
    width: 100%
  }
  
  .main-navigation a {
    padding: 8px 16px;
    border-bottom: 1px solid #b3b3b3;
  }
  
  .main-navigation a:hover{
    border-bottom: 2px solid black;
  
  }
  
  a {
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  footer {
    background-color: #000;
    text-align: center;
    color: #fff;
    
  }
  
  footer .footer-navigation {
    padding: 30px 0 15px;
  }
  
  img{
    width: 40px;
    margin: 8px;
  }
  
  footer .ispirated{
    font-size: 13px;
    margin-bottom: 40px;
  }


/* Only in About*/
  main {
    padding-bottom: 60px;
    padding-top: 30px;
}

h1 {
  font-size: 32px;

}

p {
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.6;
}

p a {    
 text-transform: none;
text-decoration: underline;
cursor: pointer;
text-underline-position: under;
text-decoration-color: grey;

}

  
/* Device optimization*/  
  @media screen and (max-width: 768px){
    .container {
      margin: 0 auto;
      width: 100%;
  }

}


