12 lines
248 B
CSS
12 lines
248 B
CSS
@font-face {
|
|
font-family: miro;
|
|
src: url('../fonts/miroslav.otf') format('opentype');
|
|
}
|
|
|
|
/* For smaller screens (e.g., mobile), make the image 100% of the container width */
|
|
@media (max-width: 768px) {
|
|
img {
|
|
width: 70%;
|
|
}
|
|
}
|