* {
    margin: 0;
    padding: 0;
  }



/* metamorphous-regular - latin */

@font-face {
    font-family: 'Metamorphous';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/metamorphous-v18-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local(''), url('assets/fonts/metamorphous-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('assets/fonts/metamorphous-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('assets/fonts/metamorphous-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('assets/fonts/metamorphous-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('assets/fonts/metamorphous-v18-latin-regular.svg#Metamorphous') format('svg');
    /* Legacy iOS */
}
  
  html,body {
    font-size: 18px;
    font-family: 'Metamorphous'!important;
    width: 100%;
    height: 100%;

  }
  
  .background {
    position: fixed;
    background-color: #000;
    z-index: -2;
    width: 100%;
    height: 100%;
  }
  
  .bg-img {
    background-image: url("assets/images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    filter: blur(10px);
  }

  main{
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .panel-left {
    width: clamp(300px, 430px, 90%);
    box-shadow: 0 0 1rem #000;
    border-radius: 0 0 7px 7px;
    border: thin solid;
    font-size: 20px;

  }
  .img{
    display: block;
    width: 100%;
    height: auto;
  }

  .panel-right {
    width: clamp(300px, 430px, 90%);
    box-shadow: 0 0 1rem #000;
    border-radius: 0 0 7px 7px;
    border: thin solid;
    font-size: 20px;

  }

  .panel-left h3{
    background-color: #000;
    text-align: center;
    color: azure;
  }

  header{
    height: 180px;
  }
   
  .social {
    width: 100%;   
    list-style: none;
  }
  
  .social li {
    margin: 0 3%;
    width: clamp(48px, 48px, 15%);

  }
  
  .social li img {
    width: 100%;
    height: auto;
    transition: box-shadow 0.3s;
    border-radius: 16px;
    vertical-align: bottom;
  }
  
  .social li img:hover {
    cursor: pointer;
  }
  
  .box {
	width: 80%;
	height:80px;
	margin:40px auto;
  
}

.panel-about {
  width: clamp(300px, 830px, 100%);
  box-shadow: 0 0 1rem #000;
  border-radius: 0 0 7px 7px;
  border: thin solid;
  font-size: 20px;
background-color: #0000002f;


}

.boxAbout{
  width: 100%;
  height: auto;
  margin: 40px auto;
  text-align: center;
  color: #FFF;
}


.box img{
  text-align:center;
	position:relative;
	top: auto;
}

button{
  position: relative;
  height: 65px;
  width: 210px;
  margin: 0 40px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer;
  background: #0d0d0d;
  overflow: hidden;
  transition: 0.6s;
  float: right;

}
button:first-child{
  color: #206592;
  border-color: #206592;
}
button:last-child{
  color: #ce5c0c;
  border-color: #ce5c0c;
}
button:before, button:after{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  filter: blur(30px);
  opacity: 0.4;
  transition: 0.6s;
}
button:before{
  width: 60px;
  background: rgba(255,255,255,0.6);
  transform: translateX(-130px) skewX(-45deg);
}
button:after{
  width: 30px;
  background: rgba(255,255,255,0.6);
  transform: translateX(-130px) skewX(-45deg);
}
button:hover:before,
button:hover:after{
  opacity: 0.6;
  transform: translateX(320px) skewX(-45deg);
}
button:hover{
  color: #f2f2f2;
}
button:hover:first-child{
  background: #206592;
}
button:hover:last-child{
  background: #ce5c0c;
}

  footer {
    font-size: 0.65rem;
    text-align: center;
    color: #000;
    margin-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  
  
  

  @media only screen and (min-resolution: 200dpi) and (orientation: portrait) {
    header{
      height: 10%;
    }

    main{
      display: inline-block;
      align-items: center;
      justify-content: center;  
      margin: auto;
    }
    .panel-left, .panel-right{
      width: 100%;
    }
  
    
}