*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
     width: 100vw;
     height: 100vh;
     margin: 0 auto;
     background-color: #eee;
 
  }

.container{
    width: 100%;
    height: 100%;
     display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: repeat(12,1fr);
    gap: 10px;
}

.logo{
    grid-column: 1/2;
    grid-row: 1/3;
    z-index: 15;
    padding: 5px;
}
 

.header{
     grid-column: 1/-1;
    grid-row: 1/11;
    background-image: url(../images/board.jpg);
     background-size:cover;
     background-position: 0 -270px; 
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
  

}

.navBar{
    grid-column: 1/-1;
    grid-row: 1/3;
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    align-items: start;
      
  
}

.navBar a{

    text-decoration: none;
    color: teal;
    font-size: 1.3em;
    margin-left: 20px;
    margin-top: 10px;
 }

.cardHolder{
    grid-column: 1/-1; 
    grid-row: 11/12;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    
}

.card{
    width: 360px;
    height: 400px;
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 0 10px 0;
    box-shadow: 5px 5px 8px gray;
 
 
}

.card p {
    padding: 20px;
}


.footer{
    grid-column: 1/-1;
    grid-row: 12/13;
  background-color: black;
  color: #eee;

}

.logo{
align-self: flex-start;
cursor: pointer;
}

 


.text{
    margin-top: 60px;
    font-size: 1.34rem;
    font-weight: bold;
 
}

.cardFooter{
    width: 100%;
    height:30%;
    background-color:black;
    color: white;
        
        border-radius: 0 0 10px 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
   align-items:center;
        
    
}

.cardFooter a{
    text-decoration: none;
    color: white;
}

 

.utilities .cardFooter{
    align-self: flex-end;
 
}

 .footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
 }


 @media (max-width: 978px){
  
    .container{
        display: flex;
        flex-direction: column;
    }

    .cardHolder{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .card{
        margin-bottom: 5px;
    }

    .text{
        display: none;
    }

    .navBar a{
        font-size: .95em;
    }

 }
 
 