
@keyframes bob {
    0%{transform: scale(1);}
    50%{transform: scale(1.1);}
    100%{transform: scale(1);}
}
.postTitle{
    text-align: center;
    /* color:red; */
    font-family: "Concert One";
    font-size: 3.5em;
    color: #FF69B4;
    
    /* text-decoration: none; */

}
.postBody{
    font-family: "Concert One";
    font-size: 1.5em;
    color: black;
}
#issueContainer{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}
.containerLink{
    text-decoration: none;
}
.postContainer{
    background-color: #fcb4d8;
    box-shadow: 0px 0px 20px 5px #FF69B4;
    border-radius: 50px;
    border-color: #FF69B4;
    border-width: 3px;
    border-style: solid;
    padding: 5px;
    margin: 15px;
    transition: all 0.1s;
}
/*.postContainer:hover{
    transform: scale(0.9);
}*/
.postImage{
    border-radius: 10px;
}
 #mainHeader{
    font-family: "Concert One";
    text-align: center;
    font-size: 5em;
    color: #FF69B4;
    /* animation-duration: 2s;
    animation-name: bob;
    animation-fill-mode: both;
    animation-iteration-count: infinite; */
    
    
 }
 body{
    background-color: #ffcde6;
 }