body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #000000;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/background.svg');
    /*background-image: url('images/background.svg');*/
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.card .logo {
    max-width: 240px;
    margin-bottom: 10px;
}

.card .type {
    max-width: 360px;
    margin-bottom: 0;
}

.card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin: 10px 0;
}

.card p strong {
    display: inline-block;
    margin-left: 8px;
}

.card hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}