* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: 'Inter', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  background: #0D0D0D;
}

a {
  text-decoration: none;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url('./assets/bg.png');
  background-size: cover;
  gap: 30vh;
  width: 100%;
  max-width: 700px;
}

/* Profile */
.profile {
  display: flex;
  flex-direction: column;
  background: #0D0D0D;
  border: 2px solid #1E1E1E;
  border-radius: 4px;
  padding: 1rem .5rem;
  margin: 1rem;
}

.profile .logo {
  display: flex;
  justify-content: center;
}

.profile .logo img {
  width: 10rem;
}

.profile .text {
  padding: 1rem 1rem;
  color: #f0f0f0;
  border-top: 2px solid #1E1E1E;
  margin-top: 1rem;
}

/* LINKS */
.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 1rem 4rem 1rem;
  gap: .8rem;
}

.links a {
  display: flex;
  width: 100%;
  border-radius: 4px;
}

a.btn-primary {
  justify-content: center;
  padding: .9rem 2rem .9rem 2rem;
  background: #61F54B;
  color: #1E1E1E;
  font-weight: 500;

  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

a.btn-secondary {
  padding: .9rem 2rem .9rem 2rem;
  background: #0D0D0D;
  color: #61F54B;
  font-weight: 500;
  border: 2px solid #61F54B;
}

a.btn-secondary img {
  margin-right: 2rem;
}

a.btn-secondary .text {
  display: flex;
  justify-content: center;
  width: 80%;
}


/* FOOTER */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

footer p {
  color: #FFF;
}

footer a {
  font-weight: 700;
  color: #61F54B;
}