justbean/styles.css
2025-02-27 16:28:04 -07:00

32 lines
No EOL
528 B
CSS

body, html {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
html {
background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Modern gradient background */
}
.centered {
display: flex;
justify-content: center;
align-items: center;
}
img {
max-width: 100%;
height: auto;
}
#bean {
width: 150px;
height: 150px;
transition: transform 0.3s ease;
}
#bean:hover {
transform: scale(1.1); /* Slightly enlarge the bean on hover */
}