* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #141414;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 16px;
}

.desktop-page {
  width: 100%;            
  height: 100%;          
  display: flex;
  justify-content: center; 
  align-items: center;
}

.main-content {
  width: 375px;
  height: 573px;
  padding: 32px 24px;
  background: #1F1F1F;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile img.profile {
  width: 83px;
  height: 83px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.profile h2,
.profile .location,
.profile .bio-text {
  text-align: center;
}

h2 {
  color: #FFFFFF;
  margin-top: 24px;   /* space from profile pic */
  margin-bottom: 8px;
}
        
.location {
  color: #C5F82A;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}

.bio-text {
  width: 256px;
  height: 17px; 
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 16px;
}

.links {
  width: 327px;
  height: 299px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.link-item {
  width: 295px;
  height: 47px;
  background: #333333;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #FFFFFF;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 10px;
}

