/* Attention!
This is the style of the template
be careful what are you modify, this could result in 
affecting the styling of the template
Created by Mihaidev-Cloud :3 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




:root {
    --bgColor:#000000;
    --accentColor: #E6E6E6;
    --bold-h1:900;
    --bold-p:200;
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-josefin: 'Josefin Sans', sans-serif;
}




h1 {
    font-family: var(--font-inter);
    font-weight: var(--bold-h1) !important;
}

body {
    font-weight: var(--bold-p);
    font-family: var(--font-poppins);
background-color: var(--bgColor); /* background color */
color: var(--accentColor); /* text color */
background: #000000 url("../images/");
}




a{
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-family: sans-serif;
  text-decoration: none;
  color: #dfdfdf;
  border: 2px solid #dfdfdf;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all .35s;
}

a span{
  position: relative;
  z-index: 2;
}

a:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #cccccc;
  transition: all .35s;
}

a:hover{
  color: #fff;
}

a:hover:after{
  width: 100%;
}

