h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Audiowide", sans-serif;
}

body {
    background-color: white;
    font-family: "Poppins", sans-serif;
}

.card {
    background-color: #fafafa;
    border-radius: 2rem;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 2rem;
}

.card h1 {
    text-align: center;
    color: #22465d;
}

.card p {
    color: #2f2f2f;
    text-align: center;
    font-weight: bold;
}

.card ul {
    list-style-type: none;
}

.card > .links {
    text-align: center;
}

.card > .links > div {
    margin: 1rem;
}

.card > .links > div > a {
    overflow-wrap: break-word;
    color: white;
    text-decoration: none;
    background-color: #e24536;
    padding: 0.5rem;
    border-radius: 0.5rem;

    transition: background-color 0.3s ease-in-out;
}

.card > .links > div > a:hover {
    background-color: #500c06;
}

@media screen and (max-width: 800px) {
    .card {
        width: 80%;
    }
    .card > .links > div > a {
        font-size: 12px;
    }
}

@media screen and (max-width: 400px) {
    .card {
        width: 80%;
    }

    .card h1 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    .card > .links > div > a {
        font-size: 9px;
    }
}
