body{
    overflow: hidden;
}
.wrap{
    height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.content{
    min-height: 75%;
    width: 60%;
    margin: 8% auto 0px auto;
    background-color:transparent;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.block{
    box-shadow: 1px 1px 1px 1px black;
    width: 50%;
    text-align: center;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.5rem;
}
.header {
    font-weight: bold;
}
.img_wrap{
    margin: 10px auto 15px auto;
    width: 90%;
    height: auto;
}
.img_wrap img{
    width: 100%;
    height: 100%;
}
.block p a:hover{
    color: yellowgreen;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
}
.card{
    background-color: #fff;
    color: green;
}
.card p a{
    color: green;
    text-decoration: none;
}
.online{
    background-color: green;
    color: #fff;
}
.online p a{
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    .block{
        width: 100%;
    }
  }