<h1 style="color: yellow;">Alexander Goussas</h1>
<h2 style="color: green; text-align: center;">Blog about programming and friends</h2>
+ <img id="logo" src="./logo.png" />
+ <img id="hornet" src="./hornet.png" />
+
<section id="posts">
<h2 style="color: yellow;">Posts</h2>
<ul>
- <li><a href="./06-05-2026-language-checkpoint-april.md.html">Language Checkpoint - April 2026</a></li>
</ul>
</section>
<script src="js/script.js"></script>
}
nav {
+ display: flex;
+ justify-content: center;
ul {
list-style: none;
display: flex;
- justify-content: space-between;
+ }
+}
+
+#logo {
+ max-width: 169px;
+ position: fixed;
+ right: 10px;
+ top: 200px;
+ border: 2px lightgreen solid;
+ animation: 0.3s linear infinite alternate blink-green;
+}
+
+#hornet {
+ max-width: 169px;
+ position: fixed;
+ top: 20px;
+ left: 10px;
+ border: 2px red solid;
+ animation: 0.3s linear infinite alternate blink-red;
+}
+
+@keyframes blink-red {
+ from {
+ transform: scale(1);
+ box-shadow: none;
+ }
+ to {
+ transform: scale(0.99);
+ box-shadow:
+ rgba(255 0 0 / 80%) 3px 3px 8px,
+ rgba(255 0 0 / 80%) -3px -3px 8px;
+ }
+}
+
+@keyframes blink-green {
+ from {
+ transform: scale(1);
+ box-shadow: none;
+ }
+ to {
+ transform: scale(0.99);
+ box-shadow:
+ rgba(0 255 0 / 80%) 3px 3px 8px,
+ rgba(0 255 0 / 80%) -3px -3px 8px;
}
}