:root {
  --black: #000000;
  --green: hsl(75, 94%, 57%);
  --white: hsl(0, 0%, 100%);
  --font-size-paragraph: 1rem;
  --font-family: "Inter", serif;
  --grey-700: hsl(0, 0%, 20%);
  --grey-800: hsl(0, 0%, 12%);
  --grey-900: hsl(0, 0%, 8%);
}

/* Eliminar el modelo caja de css para medidas */

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  background-color: var(--grey-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: var(--font-family);
}

.main-container {
  background-color: var(--grey-800);
  min-height: auto;
  width: 400px;
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 6rem;
  border-radius: 3%;
}

.personal-information-direction {
  color: var(--green);
}

.personal-information {
  margin-top: 2rem;
}

img {
  border-radius: 50%;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 80%;
}

.social-links-a {
  background-color: var(--grey-700);
  margin: 0.5rem 0;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
}

.social-links-a:hover {
  background-color: var(--green);
  color: var(--black);
}

/* Media Queries */

/*Celular*/
@media (max-width: 844px) {
  .main-container {
    margin: 0 2rem;
  }
}
