:root {
  --green: rgb(197, 248, 42);
  --white: rgb(255, 255, 255);
  --grey-700: rgb(51, 51, 51);
  --grey-800: rgb(31, 31, 31);
  --grey-900: rgb(20, 20, 20);
  --duration: 0.2s;
}

@font-face {
  font-family: "inter";
  src: url(../../assets/fonts/static/Inter-Bold.ttf);
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "inter";
  src: url(../../assets/fonts/static/Inter-Regular.ttf);
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "inter";
  src: url(../../assets/fonts/static/Inter-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--grey-900);
  color: var(--white);
  font-family: inter;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link {
  width: 340px;
  background-color: var(--grey-800);
  border-radius: 10px;
}
.social-link__body {
  display: grid;
  justify-items: center;
}
.social-link__avatar {
  width: 80px;
  border-radius: 100%;
}
.social-link__name {
  font-size: 22px;
  font-weight: 700;
  padding-top: 20px;
}
.social-link__residence {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0px 25px 0px;
}
.social-link__description {
  font-size: 13px;
}
.social-link__menu-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.social-link__menu-link {
  display: inline-block;
  width: 100%;
  color: var(--white);
}
.social-link__menu-item {
  background-color: var(--grey-700);
  width: 280px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: var(--duration);
}
.social-link__menu-item:hover {
  background-color: var(--green);
  color: var(--grey-900);
}

.content-padding {
  padding: 30px;
}

/*# sourceMappingURL=main.css.map */
