@import url('https://fonts.googleapis.com/css?family=Amatic+SC');
@import url('https://fonts.googleapis.com/css?family=Quicksand');

body
{
    margin: 0;
    height: 100vh;
    width: 100vw;
    background-image: url('img/background.jpg' );
    /*background-size: auto;*/
    background-size: cover;
    background-attachment: fixed;
}

a
{
    text-decoration: none;
}

.avatar
{
    width: 12%;

}
.avatar_404
{
    width: 50%;

}

.mail
{
  font-family: Quicksand;
  color: #ffffff;
}


#total
{


    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: start
}
#logo
{
    margin-top: 50px;
    display: block;
    content: " placeholder ";
    text-align: center;
}

#link
{   

    display: block;
    content: " placeholder ";


}

.button_container {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
}

.description, .link {
  font-family: 'Quicksand';
  color: #404040;
  text-align: center;
}

.description {
	font-size: 40px;
}

.icone
{

  z-index: 1;
}

.btn {
  font-family: 'Quicksand';
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  border: none;
  width: 300px;
  /*display: block;*/
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  background-color: #222;
  padding: 17px 60px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.20);
}

.btn span {
  position: relative; 
  z-index: 1;
}

.btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 100%;
  background: #78c7d2;
  
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.link {
  font-size: 20px;
  margin-top: 30px;
}

.link a {
  color: #000;
  font-size: 25px; 
}


@media screen and (max-width:800px)
{
    body
    {
        
      background-image: url('img/background_mobile.jpg' );
        margin: 0;
        height: 100vh;
        width: 100vw;
        /*background: rgb(58,79,255);
        background: -moz-linear-gradient(180deg, rgba(58,79,255,1) 0%, rgba(118,242,250,1) 100%);
        background: -webkit-linear-gradient(180deg, rgba(58,79,255,1) 0%, rgba(118,242,250,1) 100%);
        background: linear-gradient(180deg, rgba(58,79,255,1) 0%, rgba(118,242,250,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3a4fff",endColorstr="#76f2fa",GradientType=1);*/
    }
    .avatar
    {
      width: 35%;
    }
    .description
    {
      color: #fff;
    }
}


@media screen and (max-width:700px)
{
    body
    {
        
      background-image: url('img/background_mobile.jpg' );
        margin: 0;
        height: 100vh;
        width: 100vw;
       /* background: rgb(58,79,255);
        background: -moz-linear-gradient(180deg, rgba(58,79,255,1) 0%, rgba(118,242,250,1) 100%);
        background: -webkit-linear-gradient(180deg, rgba(58,79,255,1) 0%, rgba(118,242,250,1) 100%);
        background: linear-gradient(180deg, rgba(58,79,255,1) 0%, rgba(118,242,250,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3a4fff",endColorstr="#76f2fa",GradientType=1);*/
    }

    .description
    {
      color: #77A090;
    }

    .avatar
    {
      width: 35%;
    }
 
    
}