body{
    background-color: black;
    color:#050505;
    font-family: Retro Italics, Helvetica, Arial, sans-serif;
    font-size: 110px;
}

a:link{
    color:#050505
}

a:visited{
    color:#151515
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

.container {
    border:1px solid black;
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
}

.item {
    font-size:150px; 
    font-family: Retro Italics;
    color: white;
}

.item-1 {
    background-color: #050505; 
    grid-area: 1/ 1 / 1 / 1;
}

.item-2 {
    background-color: #050505;
    grid-area: 2 / 2 / 2 /2;
}

.item-3 { 
    background-color: #050505;
    grid-area: 3 / 3 / 3 / 3;
}

.item-4 { 
    background-color: #050505;
    grid-area: 4 / 4 / 4 / 4;
}

.item-5 { 
    background-color: #050505;
    grid-area: 5 / 5 / 5/ 5;
}
