@font-face {
    font-family: "Anonymous Pro";
    src: url(fonts/AnonymousPro-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Anonymous Pro";
    src: url(fonts/AnonymousPro-Regular.ttf);
}

h1 {
    font-family: "Anonymous Pro", sans-serif;
    font-size: 48px;
    margin: 0;
    color: black;
}

h2 {
    font-family: "Anonymous Pro", sans-serif;
	font-size: 26px;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    flex: 1 0 auto;
    padding: 40px 0;
}

.content {
    display: block;
    width: 90%;
    max-width: 1180px;
}

.links {
    display: inline-flex;
    width: 300px;
    justify-content: space-between;
}

.content_hf {
    justify-content: space-between;
    column-gap: 30px;
    display: flex;
    width: 100%;
    margin: 23px 0;
}

.content_cards {
    justify-content: space-between;
    gap: 30px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
}

.legal {
    border-top: 1px solid #676B73;
}

.legal_text {
    text-align: center;
    color: #A1A6B4;
}

.card {
    flex-direction: column;
    border-radius: 12px;
    width: 371px;
    background: #ffffff;
    transition: box-shadow ease-in-out 200ms, transform ease-in-out 100ms;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
}

.card_text {
    margin: 26px;
}

h3 {
    font-family: "Anonymous Pro", sans-serif;
	font-size: 20px;
    margin: 15px 0;
}

p {
    font-family: "Anonymous Pro", sans-serif;
    font-size: 20px;
}

.card_image {
    width: 364px;
    border-radius: 12px;
}

.link_head {
    display: inline-flex;
    text-decoration: none;
    color: black;
}

.link {
    text-decoration: none;
}

.link_foot {
    display: inline-flex;
    text-decoration: none;
    color: white;
}

.no_margin {
    margin: 0;
}

.logo {
    margin: 20px 0 0 0;
}

.down_center_button {
    position: sticky;
    /*position: fixed;*/
    bottom: 50px;
    align-self: center;
    width: 300px;
    background-color: white;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
}

button {
    background-color: transparent;
    cursor: pointer;
    border: none;
}

header {
    /*background: white;*/
    /*border-bottom: 1px solid #A1A6B4;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    flex: 1 0 auto;
}

footer {
    background: #121723;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    flex: 1 0 auto;
}

body {
    margin: 0;
    background: #f1f1f1;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h3, p {
        margin: 10px 0;
        font-size: 15px;
    }

    .legal_text {
        font-size: 16px;
    }

    .content_cards {
        justify-content: space-between;
        gap: 24px;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        max-width: 371px;
        margin-bottom: 40px;
    }

    .content_hf {
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        /*max-width: 100%;*/
        /*align-items: center;*/
        margin-bottom: 0;
    }

    .card {
        width: 100%;
    }

    .card_image {
        width: 100%;
    }

    .links {
        max-width: 300px;
        width: 100%;
    }

    .logo {
        margin: 0;
    }

    .main {
        padding: 20px 0;
    }

    .down_center_button {
        max-width: 230px;
        width: 80%;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
    }
}