
body{
  min-height: 100vh;
  display: flex;
}

*{
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  margin: 0;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  font-size: 18px;
  font-weight: 300;
}

button{
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color: white;
}

a:hover{
  color: #ffb535;
}

svg{
  margin: 0 15px;
  fill: white;
}

#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  color: #2c3e50;
    /* margin-top: 60px; */
  }
  
  /* sticky */
  .mainNav{
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    padding: 10px 0;
    margin: 10px 0;
    z-index: 10;
  }

  nav ul {
    list-style: none;
    padding: 0;
  }

  nav ul li {
    color: black;
    display: inline;
    margin: 0 10px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
  }

  .mainNav ul li.active {
    color: #ffb535;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.25);
    /* margin: 0 0 50px 0; */
    /* border-bottom: 2px solid #ffb535; */
  }

  .mainNav ul li:hover{
    color: #ffb535;
  }
  
  .mainContainer{
    margin: 0 auto; 
    width: 80%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  header{
    background-color: #2c3e50;
    color: white;
    padding: 25px 25px;
  }

  .header-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .avatar-min{
    display: none;
    width: 90%;
    border: 5px solid white;
  }

  .headerLogo{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .pageName{
    font-size: 30px;
    font-weight: bold;
    color: white;
    
  }

  .subName{
    display: flex;
    align-items: center;
    color: #ffb535;
    font-size: 15px;
  }

  .subName2nd-item{
    padding: 0 5px;
    margin: 0 5px;
    border-left: 1.5px solid #ffffff;
    border-right: 1.5px solid #ffffff;
  }

  .headerContacts{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .headerContactsItem{
    display: flex;
    align-items: center;
  }

  footer{
    background-color: #2c3e50;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px;
    margin-top: auto;
  }

  .footerAuthirInfo{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .socialMediaFooter{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .socialMediaFooter svg{
    margin: 0 10px;
    transition: transform 1s ease;
  }

  .socialMediaFooter svg:hover{
    fill: #ffb535;
    transform: scale(1.2);
    transition: transform 0s ease;
  }


