@font-face {
  font-family: vcr;
  src: url('fonts/VCR_OSD_MONO_1.001.ttf');
}


@font-face {
  font-family: jetbrains;
  src: url('fonts/JetBrainsMonoNL-Medium.ttf');
}

:root {
  padding: 0 !important;
}

.page-title {
  font-size: 1000%;
  font-weight: 900;
  font-family: jetbrains;
  display: flex;
  align-items: center;
}

.title-container {
  height: 90vh;
}

.cols-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.big-btn {
  padding: 5px 7px;
  background-color: white;
  font-weight: bold;
  border: solid 2px black;
  border-radius: 5px;
  box-shadow: 5px 5px 0px 0px rgb(0, 0, 0);
  cursor: pointer;
  transition: all 0.3s;
}

.big-btn:hover {
  background-color: whitesmoke;
  box-shadow: 1px 1px 0px 0px rgb(0, 0, 0);
  transition: all 0.3s;
}

.paragraf {
  margin: 10px 0px;
}


.center {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  font-size: larger;
}

body {
  background-color: rgb(231, 238, 219);
  font-family: vcr, monospace;
  padding: 0 !important;
  margin: 0 !important;
}

::selection {
  background-color: black;
  color: greenyellow;
}

.red {
  color: rgb(177, 0, 0);
}

.electric {
  color: rgb(0, 163, 168);
}

.text-center {
  text-align: center;
}

h1 {
  font-family: jetbrains;
}

section {
  font-family: jetbrains;
  background-color: white;
  padding: 5px 30px;
}

.explain {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 17px;
  color: rgb(31, 31, 31);
}

.grid {
  display: flex;
  justify-content: space-around;
}

.card {
  border: solid 1px rgba(128, 128, 128, 0.443);
  padding: 2% 3%;
  margin: 2% 0;
  box-shadow: 1px 1px 3px rgba(128, 128, 128);
  max-width: 20vw;
  background-color: rgb(241, 246, 231);
}

nav {
  background-color: black;
  color: greenyellow;
}

nav>ul {
  list-style: none;
  margin: 0 !important;
  display: flex;
  justify-content: space-around;
}

nav>ul>li {
  padding: 10px 0px;
}

a {
  color: inherit !important;
}

footer {
  display: flex;
  justify-content: space-evenly;
  padding: 3%;
  background-color: rgb(242, 242, 242);
  border: solid 1px rgba(128, 128, 128, 0.253);
}

footer>.footer-list {
  display: flex;
  flex-direction: column;
}

footer>.footer-title {
  font-family: jetbrains;
}

.footer-list>ul {
  list-style: decimal;
}

.footer-list>ul>li>a {
  text-decoration: none;
}





.projects-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  gap: 8px;
}

.project-title
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-title > a 
{
  text-decoration: none;
  color: darkblue !important;
}