
body {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  margin: 0;
}

.wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-image: url("./bg-min.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.content {
  margin-top: 40vh;
  padding: 2rem;
}

.title {
  font-size: 2rem;
  font-weight: 500;
}

.text {
  font-size: 1.5rem;
  font-weight: 400;
}

.link {
  text-decoration: none;
  font-weight: 700;
}

.loader {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: flex-start;  
}

.loader__element {
	height: 4px;
	width: 100%;
	background-color: #e6e6e6;
}

.loader__element:before {
	content: '';
	display: block;
	background-color: #6d6d6d;
	height: 4px;
	width: 0;
  animation: getWidth 3s ease-in infinite;
}

@keyframes getWidth {
	100% { width: 100%; }
}