<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mind</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="mind-container">
<svg class="mind-svg" viewBox="0 0 100 100">
<circle cx="50" cy="50" r="40" fill="#f0f0f0" />
<path d="M50 10 L90 90 L10 90 Z" fill="#666" />
<path d="M50 90 L90 10 L10 10 Z" fill="#666" />
<circle cx="50" cy="50" r="10" fill="#fff" />
</svg>
<div class="thought-bubbles">
<div class="thought-bubble">Idea</div>
<div class="thought-bubble">Concept</div>
<div class="thought-bubble">Inspiration</div>
</div>
</div>
</body>
</html>
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.mind-container {
position: relative;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.mind-svg {
width: 200px;
height: 200px;
}
.thought-bubbles {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
}
.thought-bubble {
background-color: #fff;
padding: 10px 20px;
border-radius: 10px;
margin-bottom: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.thought-bubble:hover {
background-color: #f5f5f5;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.