.text-center {
    text-align: center;
}

.header-content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.header-content img {
    max-width: 100%;
}

.header-content-card {
    background-color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    text-align: center;
    padding: 30px 40px 40px;
    border-radius: 5px;
    width: 50%;
}

.header-content-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-content-card-button {
    margin-top: 34px;
}

.logo-wrapper {
    padding-top: 90px;

    img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: block;
    }

    .header-content-card {
        border: none;
        margin: 0 auto 20px auto;
        width: 100%;
    }

    .header-content-card-body {
        height: auto;
    }
}