body{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    font-size: 22px;
}

/*bg img 100% of body and fixed in background */
.bg-img{ 
  min-height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position : fixed;
  background-image: url("img/bg.png");
  
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}

@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}
}

/* pentru transitie
top : 0;
width : 100%;
in js de prins scroll momentul */

.topnav {
  overflow: hidden;
  background-color: #f7f7f7;
  position: fixed;
  width: 80%;
  top : 20px;
  margin-left: 10%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.topnav a {
  float: left;
  display: block;
  color: #655958;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 13px;
  margin : 0 10px;
}

.topnav-right{
  float: right;
}


.logo-navbar img{
  transform: scale(1.25, 1);
  width: 60px;
  height: 18px;
  margin:0;
  padding : 0;
}

.topnav a:hover {
  background-color: #d6b687;
  color: #4C1711;
  transition: 1s ;
}


.topnav .icon {
  display: none;
}

/*
.logo {
  position: fixed;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

*/


/* imaginea cu logo care trebuia centrata */
.logo img{
  padding-top:7%;
  display: block;
  margin: 0 auto;
  width: 40%;
  height: auto;
}

.bottom{
  text-align: center;
}

.bottom p{
  font-size: 30px;

}

/* links style */
.bottom .fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
  opacity: 0.7;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

@media screen  and (max-height : 620px){
  .logo img{
    width: 30%;
  }
  .bottom p {
    font-size: 30px;
  }
}

/* tableta */
@media screen and (min-width: 700px) and ( max-width: 1200px ){
  .logo img{
    padding-top: 100px;
  }

}

/* mobil */
@media screen and (max-width: 700px) {
  .logo-navbar img{
    transform: scale(1.25, 1);
    width: 50px;
    height: 15px;
    margin:0;
    padding : 0;
  }
  

  .topnav-right{
    float: none;
  }
  .topnav{
    padding-top: 0;
    padding-bottom: 0;
  }
  .topnav-right a{display: none;}
  .topnav-right a.icon {
    float: right;
    display: block;
  }
  
  .topnav.responsive {
    overflow: hidden;
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .logo img{
    padding-top: 100px;
    width: 70%;
  }
  .bottom p{
    font-size: 25px;
    
  }

  .bottom .fa {
    padding: 15px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
  }
  
  
}