* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile img {
    width: 120px;
    margin-bottom: 15px;
}

.profile h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.profile p {
    font-size: 0.9em;
    color: #666;
}

.profile a {
    color: #666;
}
.profile{
    margin: 30px;
}

.links a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 5px;

}

.links a:nth-child(1) {
    border: solid 3px #cacaca;
    color: #454545;
    }

.links a:nth-child(2) {
    border: solid 3px #d29fbc;
    color: #c13584;   
    }

.links a:nth-child(3) {
    border: solid 3px #92b0f1;
    color: #316FF6;
}