* {
  color: white;
 font-family: 'Courier New', monospace;
}

ul {
  font-size: 30px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #131313;
}

 a:link {
      text-decoration: none;
}

a:visited {
      text-decoration: none;
}

a:hover {
      text-decoration: none;
}

a:active {
      text-decoration: none;
}


body {
  font-size: 18px;
  background-color: #131313;
}

h1 {
  font-size: 2.5em;
}
p {
  font-size: 1em;
}
.header_div {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 50%;
  max-height: 30%;
}
.works_other {
  background-color: rgb(21, 21, 21);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border: 3px solid grey;
  border-radius: 3px;
  padding: 2rem;
  justify-content: center;
}
.work_item {
  justify-content: center;
  align-items: center;
  background-color: rgb(32, 32, 32);
  border: 3px solid grey;
  border-radius: 3px;
  padding: 1rem;
  transition: transform 0.2s;
}

.work_item:hover {
 transform: scale(1.05);
 border: 4px solid white;
}



