html, body {
    height: 100vh;
    background: linear-gradient(180deg, #1fabc7, #006ca6);
    font-family: 'Source Sans Pro', sans-serif;
}

.container {
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    border-radius: 15px;
    background-color: white;
    padding: 8px;
    text-align: center;
    width: 280px;
    height: 400px;

}
.card .content {
    background-color: #0EBB9F;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    position: relative;
}
.card .content img{
    margin-top: 20%;
    max-width: 70%;
}
.card .content a{
    transition: color .2s linear, border-color .2s linear;
    font-size:14px;
    text-transform: uppercase;
    text-decoration: none;
    color:#fff;
    border:2px solid white;
    border-radius: 99px;
    padding:15px 30px;
    line-height: 15px;
    display: inline-block;
    margin-top: 24%;
    letter-spacing: 1px;
}
.card .content a:hover {
    background-color:rgba(255,255,255,.05);
}

.card .content h1 {
    color: white;
    letter-spacing: 1px;
    font-size: 18px;
    margin-top: 15px;
}

.card .content p {
    color: white;
    letter-spacing: 1px;
    font-size: 12px;
    margin-top: 5px;
}
.card .content .text {
    position: absolute;
    width: 100%;
    bottom: 10%;
}