* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    background-image: url(assets/bg.jpg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    background: rgba(66, 66, 66, 0.712);
    border: #000 solid 2px;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: #000 solid 2px;
    object-fit: cover;
    margin-bottom: 15px;
    background-color: #353535;
}

h1 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #e6e6e6;
}

p {
    font-size: 14px;
    color: rgb(177, 177, 177);
    margin-bottom: 15px;
}

.links button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 20px;
    background-color: #2b2b2b;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.links button:hover {
    background-color: #202020;
}

/* Responsiveness */
@media (max-width: 500px) {
    .container {
        width: 95%;
    }
}
