body {
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background: #512159;
    aspect-ratio: 960/540;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 20px;
    width: 80%;
    min-height: 12em !important;
    padding: 25px;
    color: #444;
    box-shadow: 5px 5px 8px 1px rgba(37, 37, 37, 0.2);
}

.profile {
    width: 100px;
    height: 100px;
    float: right;
    background: url(./images/LogoColor.png) center / cover;
}

.float-bottom {
    position: absolute;
    bottom: 25px;
}

a {
    color: #512159;
}

@media (prefers-color-scheme: dark) {
    body {
        overflow: hidden;
    }

    .profile {
        background-image: url('./images/LogoDark.png');
    }

    .card {
        background-color: #444;
        color: #fff;
    }

    a {
        color: #B248C5;
    }
}

@media only screen and (min-width: 800px) {

    .card {
        max-width: 45em;
        min-height: 25em;
    }
}
