* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: rgb(84, 228, 231);
    background: radial-gradient(circle, rgb(95, 209, 211) 0%, rgba(197, 121, 154, 0.588) 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 15px;
    
}

.profile {
    margin-bottom: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    rotate: 15deg;
}

.name {
    background-color: rgb(44, 141, 143);
    padding: 2px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    justify-content: flex-end;
    
}

.name-intro {
    font-size: 24px;
    color: #666;
   justify-content: flex-start;
  
}

.name-all {
    display: inline;
    
}

.bio {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link {
    text-decoration: none;
    background-color: rgba(115, 111, 113, 0.938);
    color: white;
    padding: 10px 20px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.link:hover {
    background-color: rgb(92, 152, 153);
}
