@font-face {
  font-family: Geist;
  src: url("../fonts/Geist-Regular.ttf");
}

@font-face {
  font-family: GeistMedium;
  src: url("../fonts/Geist-Medium.ttf");
}

@font-face {
  font-family: GeistSemiBold;
  src: url("../fonts/Geist-SemiBold.ttf");
}

@font-face {
  font-family: GeistBold;
  src: url("../fonts/Geist-Bold.ttf");
}

:root {
  --bg-color: #3B3B3B;
  --second-color: #A0BB20;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Geist;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */

}

.container {
  text-align: center;
}

.description {
  color: var(--second-color);
  font-size: 1.5rem;
  margin-top: 1rem;
}

footer {
  width: 100%;
  background-color: var(--second-color);
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.row {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.name {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.text {
  color: white;
  font-size: 16px;
  margin-bottom: 5px;
}

.text span {
  font-weight: 800;
}

.spacer {
  height: 10px;
}

a {
  display: inline-block;
  position: relative;

  text-decoration: none;
  color: white;
}

a:last-child {
  margin-right: 0;
}

a:after {
  content: '';
  display: block;
  margin: auto;
  height: 0.15vw;
  width: 0;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}
a:hover:after {
  width: 100%;
  background: var(--bg-color);
}

.title {
  font-size: 1.8vw;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .row {
    width: 100%;
  }
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
