@font-face {
  font-family: "Memory Leak";
  src: url("memoryleak.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

a{
    color: rgb(88, 107, 231);
    text-decoration: none;
}
a:hover{
    color: rgb(43, 43, 43);
}

a:visited {
    color: rgb(214, 80, 47);
}

h1,h2,h3,h4,h5,h6{
    margin: 1em 0;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
}
b, strong{
    font-weight: 400;
    background-color: rgb(248, 193, 64);
    color: #2b2b2b;
}
body {
    max-width: 800px;
    margin: 1em auto;
    font-family: "Memory Leak", monospace;
    font-size: 2em;
    text-transform: uppercase;
    font-smooth: never;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: none;
    background-color: #1e1e1e;
    color:rgb(213, 213, 213);
}
nav{
    margin-bottom: 0.5em;
}
nav a{
    background: none;
}
main{
    padding: 0 0.5em 0.5em 0.5em;
    box-sizing: border-box;
    border: solid 3px rgb(213, 213, 213);;
}
img{
    margin:0;
    padding: 0;
    width: 100%;
    border: solid 3px rgb(213, 213, 213);;
    box-sizing: border-box;
}
ul {
  list-style: none;
  padding-left: 1.5rem;
}

ul li::before {
  content: "* ";
  width: 1rem;
  margin-left: -1rem;
}

#siteTitle{
    text-align: center;
    margin: 1em 0;
}

footer{
    text-align: center;
}

p{
    margin: 1em 0;
}

#videos{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

#videos div {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#videos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#art {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

#art div{
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

#art div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}