22 lines
357 B
CSS
22 lines
357 B
CSS
@font-face {
|
|
font-family: mono;
|
|
src: url('../fonts/monomakh.otf') format('opentype');
|
|
}
|
|
|
|
h2 {
|
|
font-family: mono, sans-serif;
|
|
color: whitesmoke;
|
|
}
|
|
|
|
img {
|
|
width: 60%;
|
|
height: auto;
|
|
}
|
|
|
|
/* For smaller screens (e.g., mobile), make the image 100% of the container width */
|
|
@media (max-width: 768px) {
|
|
img {
|
|
width: 70%;
|
|
}
|
|
}
|