<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<title>Esőkör</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #0e0e0e;
}
img {
width: 300px;
height: 300px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 0 40px rgba(255,255,255,0.2);
}
</style>
</head>
<body>
<img src="kep.jpg" alt="Esőkör kép">
</body>
</html>