/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');


.outfit-400 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  .outfit-600 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }

  .outfit-800 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
  }
  

:root {
    --green: hsl(75, 94%, 57%);
    --white: hsl(0, 0%, 100%);
    --grey-700: hsl(0, 0%, 20%);
    --grey-800: hsl(0, 0%, 12%);
    --grey-900: hsl(0, 0%, 8%);
}

/*styles*/

body {
  background-color: var(--grey-900);
  color: var(--white);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 15px;
  padding: 20px;
  width: 320px;
  height: 550px;
  text-align: center;
  background-color: var(--grey-800);
}

.profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.profile h3 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 800;
}

.profile p span {
  font-weight: 600;
  color: var(--green);
  font-size: 12px;
}

.social-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button-style {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  background-color: var(--grey-700);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.button-style:hover {
  background-color: var(--green);
  color: var(--grey-900);
  transform: translateY(-2px);
}

footer {
  margin-top: 20px;
  font-size: 14px;
  color: var(--white);
}