html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 750px){
    .content {
        width: 450px;
        margin: auto;
    }
}

.content img {
    width: 80%;
}

@media (min-width: 500px){
    .content img {
        width: 400px;
    }
}

.content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
}

.content h2 span {
    background: #1ea120;
    padding: 5px;
    border-radius: 30px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
}

.content h3 {
    margin-top: 50px;
    font-family: 'Roboto', sans-serif;
}

.content h3.noMargin {
    margin: 10px;
}

.content p {
    font-family: 'Roboto', sans-serif;
}

.content .links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

@media (min-width: 750px){
    .content .links {
        flex-direction: row;
        justify-content: space-between;
    }
}

.content .links a img{
    width: 200px;
}