/*AR.Designs WebVita - Online Resumee - Cascade Style Sheet*/
/*Frontface function for other Fonts*/
@font-face {
  font-family: "CaviarDreams";
  src: url(CaviarDreams.ttf);
}
@font-face {
  font-family: "Chantelli_Antiqua";
  src: url(Chantelli_Antiqua.ttf);
}
@font-face {
  font-family: "Arcon-Regular";
  src: url(Arcon-Regular.otf);
}
html, body{
  text-align: center;
  background: #1C1C1C;
  background-size: contain;
  height: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  background: url(back2.png);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

button{
    background: rgba(0, 0, 0, 0.55);
    color: #595959;
    padding: 2em;
    border: none;
    transition-duration: 1s;
    box-shadow: 0px 1px 18px #56535d;
	border-radius: 10px;
}
button:hover{
	background: black;
  color: white;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
/*Section*/
/*                   Home                     */
#home h2{
  margin-top: 70px;
  font-family: "Chantelli_Antiqua";
  color: #d2d2d2;
  opacity: 0.9;
  font-size: 90%;
  margin-top: 85px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-left: auto;
  margin-right: auto;

}
.logo{
  margin-top: 150px;
  opacity: 0.5;
  width: 75%;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.infotxt{
  background-color:rgba(0, 0, 0, 0.6);
  background-size: cover;
  padding: 10px;
  height: auto;
  box-shadow: 10px 5px 30px #000000;
  margin: 0 auto;
  width: 50%;
  min-width: 250px;
  font-size: 0.7em;
  font-family: "CaviarDreams";
  color: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
}
/*                    Sticky Copyright                       */
.copyright{
  background: none;
  color: #FFFFFF;
  font-family: "Arcon-Regular";
  font-style: normal;
  font-size: 0.5em;
  text-align: center;
  width: 100%;
  margin: 1% auto;
  padding: 0%;
  opacity: 0.3;
  z-index: 1;
  position: fixed;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
/* Responsive Design Display Settings */
/*Smartphone size*/
@media only screen and (min-width: 200px) {
  body{
      font-size: 1.2em;
  }
    #logo img{
      width:70%;
      margin-left: -100px;
    }
}
/*Tablet size*/
@media only screen and (min-width: 700px) {
  body{
      font-size: 1.9em;
  }
  #logo img{
    width:85%;
    margin-left: -70px;
  }
}
/*Desktop size*/
@media only screen and (min-width: 1400px) {
  body{
      font-size: 2.5em;
  }
  #logo img{
    width:110%;
    margin-left: -20px;
  }
}
