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

body {
    font-family: Arial, sans-serif;
    background-image: url('IMG-20241127-WA0027.jpg'); /* Add your image path here */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.links a {
    display: block;
    text-decoration: none;
    color: white;
    background: red;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 18px;
}

.links a:hover {
    background: #0056b3;
}
