/* styles.css */
body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(to right, #c7a7c4, #700054);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
}
.container {
            text-align: center;
            max-width: 600px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
}
.round-image {
            width: 200px; /* Adjust the size as needed */
            height: 200px; /* Adjust the size as needed */
            border-radius: 50%;
            display: block;
            margin: 0 auto;
            animation: fadeAnimation 2s infinite;
}
@keyframes fadeAnimation {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
}
h1 {
            font-size: 2.5em;
            margin-bottom: 0.5em;
}
p {
            font-size: 1.2em;
}
a {
            color: #c7a7c4;
            text-decoration: none;
            font-weight: bold;
}
a:hover {
            color: #ffffff;
}


