
body::before {
  content: "🚧 This site is under construction 🚧";
  display: block;
  background-color: yellow;
  color: black;
  text-align: center;
  font-weight: bold;
  font-family: sans-serif;
  padding: 10px;
  border-bottom: 2px solid black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Pataisyti, kad visa kita nenueitų po juosta */
body {
  padding-top: 50px; /* Tiek kiek juostos aukštis */
}




@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Press Start 2P', monospace;
  background-color: #a1cad6;
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #3a7a6f;
  padding: 20px 30px;
  border: 3px solid black;
  box-shadow: 4px 4px 0 black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 20px;
}

.menu-buttons a {
  background: white;
  border: 3px solid black;
  padding: 5px 10px;
  margin-right: 10px;
  display: inline-block;
  box-shadow: 3px 3px 0 black;
}

.lang-switch a {
  margin-left: 10px;
  font-size: 1.2em;
}

main {
  display: flex;
  align-items: flex-start;
  margin: 0 20px 30px 20px;
  gap: 20px;
}

.sidebar {
  width: 240px;
  background: #0cbece;
  border: 3px solid black;
  padding: 10px;
  box-shadow: 4px 4px 0 black;
  position: relative;
  flex-shrink: 0;
  height: 100%;
}

.sidebar::before {
  content: "About me";
  display: block;
  background: #0f7b8f;
  padding: 5px 10px;
  border-bottom: 3px solid black;
  font-weight: bold;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.content,
.another-block {
  background: white;
  border: 3px solid black;
  padding: 15px;
  box-shadow: 4px 4px 0 black;
  position: relative;
  width: 100%;
}

.content::before {
  content: "Overview";
  display: block;
  background: #f02141;
  color: white;
  padding: 5px 10px;
  border-bottom: 3px solid black;
}

.image-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.image-box img {
  width: 50px;
  height: 50px;
}

.image-box a {
  display: inline-block;
  font-size: 1.5em;
}
