body{
    background-image: url(back3.jpg);
    background-size: cover;

}

.loved-by-the-king-regular {
  font-family: "Loved by the King", cursive;
  font-weight: 400;
  font-style: normal;
}


.container{
    display: grid;
    grid-template-columns: repeat(7,1vh);
    grid-template-rows: (5);
    row-gap: -3px;
    column-gap: 195px;
    margin:10px;
    margin-left: 20PX;
}


.card {
    width: 160px;
    height: 160px;
    margin: 1rem auto;
    perspective: 1000px;
    cursor: pointer;
  }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .card img{
    width: 120px;
  }
  
  .card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
  }
  
  .card-front {
    border: 1px solid #e5e7eb;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    font-weight: bold;

  }
  
  .card-back {
    color: white;
    transform: rotateY(180deg);
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
  }
  
h1{
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    margin-top: -180px;
    margin-left: 830px;
    font-weight: lighter;
    color: white;
}

h2{
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  margin-top: 0px;
  margin-left: 830px;
  font-weight: lighter;
  color: white;
}

h3{
  font-family: "Loved by the King";
  color: white;
  margin-left: 1090px;
  margin-bottom: -10px;
}

.nav{
    user-select: none;
    text-align: right;
    font-family: 'Courier New', Courier, monospace;
    margin-top: -90px;

  }

  .nav-link{
    background-color: white;
    opacity: 50%;
    color: rgb(45, 143, 212);
    border: 5px;
    padding: 10px;
    border-radius: 7px;
    margin-right: 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    text-decoration: NONE;
  }

  .nav-link:hover{
    border: 1px solid #e5e7eb;
    color: white;
    background-color: transparent;

  }