@font-face {
    font-family: jetbrains;
    src: url(JetBrainsMonoNLNerdFont-Regular.ttf);
}


body {
    background-color: rgb(39, 36, 36);
    overflow-y: hidden;
    overflow-x: hidden;
}

#credits {
position: relative;
left: 40vw;
font-family: jetbrains;
color: aqua;
text-decoration: none;

}



.container {
    display: flex;
    width: 100vw;
   flex-wrap: wrap;
    align-items: center;
  justify-content: center;
  gap: 1.5vw;
   
   
}


.fnaf {

    background-color: rgb(31, 28, 28);
    border: solid black 3px;
    width: 22vw;
    border-radius: 2rem;
    margin-top: 1vh;
    transition: transform 0.2s ease-in-out;
    height: 42vh;
    z-index: 9999;
    text-align: center;

   




}


.fnaf img {
height: 38vh;
width: 100%;
    border-radius: 1.8rem;
}


.fnaf h1 {
    font-family: jetbrains;
    position: relative;
    bottom:2vh;
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
}



a {
    text-decoration: none;
}

.fnaf:hover {
    cursor: pointer;
    transform: scale(1.1);



}





