@import url('https://fonts.cdnfonts.com/css/made-outer-sans-alt');

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}
                
html, body { 
  
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'MADE Outer Sans' !important; 
  color: #ffffff;
  font-size: 10px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

input, button, textarea, select {
  font: inherit;
}


#canva {

  position: fixed;
  width: 100%;
  height: 100vh;
  display: block;
  top: 0;
  left: 0;
  z-index: -9999;
}

.footer{
  position: fixed;
  width: 100%;
  height: 100vh;
  display: block;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

}
.footer-content {
  text-align: center;
  margin-bottom: 3.5em;
}



.social-links {
  font-weight: 500;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.social-links li {
  display: inline-block;
  margin: 1rem;
  margin-right: .5rem;
  margin-left: -.25rem;
}

.social-links li a {
  text-decoration: none;
  box-shadow: inset 0 0 0 0 #000000;
  color: #ffffff;
  margin: 0 -.25rem;
  padding: 0 .25rem;
  transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
}

.social-links li a:hover {
  box-shadow: inset 100px 0 0 0 #ffffff;
  color: #000000;
}

.social-links li:not(:last-child):after {
  content:"|";
  color: #ffffff;
  margin-left: .5rem;
  height: 100%;
}

.logo {
    width: 200px;
    height: 50px;
}

.logo path {
  color: #ffffff;
  fill: currentColor;
}

.magnet {
  display: inline-block;
  backface-visibility: hidden;
  transition: transform .1s ease-in-out;
}

.copyright {
  font-family: 'MADE Outer Sans'; 
  font-weight: 500;
  font-size: 1.5rem;
}


