body{
    margin: 0;
    background-color: #000;
    font-family: "Inter","Segoe UI", Arial, sans-serif;
}
.container{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    background-color: #222224;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 500px;
    width: 300px;
}
.card-image{
    border-radius: 50%;
    margin-top: 20px;
}
.info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Name{
    color: white;
    font-weight: 700;
}
.address{
    color: rgb(223, 243, 95);
    font-weight: 600;
    font-size: 0.8rem;
    position: relative;
    margin: 0;
    bottom: 10px;
    
}
.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.links{
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 20px;
}
.links a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.x,.insta{
    position: relative;
    bottom: 7px;
}

