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

body {
     font-family: "Inter", sans-serif;
     background-color: black;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100vh;
     color: white;
}

.container {
     text-align: center;
     background-color: #201f1f;
     padding: 30px;
     width: 300px;
     border-radius: 10px;
}

.profile-picture {
     border-radius: 50%;
     height: 80px;
     width: 80px;
     margin-bottom: 20px;
}

h2 {
     margin-bottom: 8px;
}

.location {
     color: #c5f82a;
     font-size: 15px;
     margin-bottom: 22px;
}

.text {
     font-size: 13px;
     margin-bottom: 15px;
}

.link {
     display: flex;
     flex-direction: column;
     gap: 15px;
}

.button {
     padding: 9px;
     background-color: #3d3b3b;
     color: white;
     border-radius: 8px;
     text-decoration: none;
     font-size: 15px;
     font-weight: bold;
}

.button:hover {
     background-color: #777272;
}