main {
    font-size: 0.8em;
    text-align: center;
}

@media (min-width: 600px) {
    main {
        font-size: 0.9em;
    }

    .card-title {
        background-image: url(../img/baguette.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: 10px center;
    }
}
@media (min-width: 800px) {
    main {
        font-size: 1em;
    }

    .card-title {
        background-image: url(../img/baguette.png);
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 20px center;
    }
}

.card {
    color: #000;
    font-family: Arial, sans-serif;
    max-width: 550px;
    margin: 0px auto;
    background: white;
    padding: 25px 15px;
    box-shadow: 0px 5px 20px #999;
}

.card-title {
    font-weight: 800;
}

.card-title p {
    margin: 0;
    padding: 0;
}

.card-title h2 {
    margin: 4px 0;
    padding: 0;
    font-size: 1.6em;
    text-transform: uppercase;
}
.card-title h2 + p {
    text-transform: uppercase;
}

.card-content {
    padding: 15px 20px; /*2*/
    box-sizing: border-box; /*3*/
}

.card-content .contact {
    margin: 0;
    padding: 0;
    background-image: url(../img/captcha.png);
    background-size: cover;
    background-position: center center;
    min-height: 40px;
}
.card-content .contact span {
    opacity: 0;
}

a {
    color: #447d9f;
}
a:hover,
a:focus {
    text-decoration: none;
}
