@font-face {
    font-family: "FuturaRound";
    font-weight: bold;
    src: url("./fonts/afuturaroundbold.ttf"),
}

html, body {
    height: 100%;
}

a {
    text-decoration: none;
}

.card {
    border-color: transparent;
}

.row {
    height: calc(100% - 1.5rem);
}

.card > div {
    width: 90%;
    margin: auto;
    background: #363636;
    padding-bottom: .5rem;
    border-radius: 25px;
    font-family: "FuturaRound";
    border: none;
    text-align: center;
}

.card img {
    margin-top: -3rem;
}

.card a {
    width: 80%;
    font-size: 1.5rem;
    background: #000;
    color: #fff;
    border-radius: 25px;
}

.card p {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: .3rem .5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.footer img {
    width: 2rem;
}

.footer a {
    font-family: "FuturaRound";
    font-weight: bold;
    color: #666;
}

@media (max-width: 768px) {
    .wrapper {
        margin-bottom: 2rem;
    }

    .card {
        margin-top: 5rem;
    }

    .card img {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .wrapper {
        height: 100%;
    }

    .card {
        margin-top: 5rem;
    }

    .card img {
        width: 40%;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .wrapper {
        height: 100%;
    }

    .card {
        margin-top: 5rem;
    }

    .card img {
        width: 35%;
    }
}

@media (max-width: 1200px) {
    html, body {
        height: auto;
    }

    .footer {
        margin-top: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .card img {
        width: 20%
    }

    .wrapper {
        height: 100%;
    }
}

@media (min-width: 1400px) {
    .card img {
        width: 16%
    }

    .wrapper {
        height: 100%;
    }
}