* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: black;
    
}




#wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 450px;
    overflow: hidden;
}

#top-section {
    text-align: center;
    padding: 20px;
    background-color: #40354a;

}

#profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

#name {
    margin: 10px 0;
    font-family: 'Special Elite', cursive;
    letter-spacing: -0.175rem;
    width: 100%;
    font-size: 3.75em;
    line-height: 1.125;
    font-weight: 400;
    color:white;
}

#description {
    font-size: 16px;
    color:white;
    font-family: 'Inter';
}

#bottom-section {
    display:grid;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #131017;
    grid-template-columns: repeat(2, 1fr);
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    margin: 5px 0;
    padding: 10px;
    border-radius: 4px;
    background-color: rgba(159, 90, 255, 0.0);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(159, 90, 255, 0.0); 
    border-radius: 35px;
    transition: transform 0.2s, background-color 0.2s, border-radius 0.2s, border-color 0.2s;
}

.social-button:hover {
    transform: scale(1.1);
    color:white;
    background-color: rgba(159, 90, 255, 0.2);
    border: 2px solid #9944ff; 
    border-radius: 35px; 
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill:white;
}

.grid-container {
  display: grid;
  
  grid-template-columns: repeat(2, 1fr);
}
.grid-item {
    height: 65px; 
}
