body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    line-height: 1.6;
    margin: 0;
    background: url("/assets/background.png") no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    z-index: -1;
}

.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
    text-align: center;
}

.profile img {
    height: 10rem;
}

.profile h1 {
    font-size: 48px;
    margin: 10px 0 5px;
}

.profile p {
    color: #666;
    font-size: 16px;
    margin: 0 0 20px;
}

.links a {
    display: block;
    background-color: #349b00;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: #0056b3;
}
