body {
    margin: 0;
    min-height: 100vh;

    background-color: black;
    background-image: url(assets/bg.jpg);
    backdrop-filter: brightness(0.8);
    background-size: cover;
    background-position: center;

    font-family: "Heebo", sans-serif;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

#content {
    min-width: 10vw;
    width: 30rem;
    max-width: 90vw;
}

.center {
	text-align: center;
}

.card {
    box-shadow: 1px 4px 15px #0005;
    background-color: #3535359a;
    backdrop-filter: blur(25px);
    border-radius: 5px;
    border: 1px solid #555;
    padding: 1rem;
}
h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.links {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.links a {
    display: block;

    width: 3rem;
    padding: 0.5rem;

    filter: invert();
    transition: 250ms;
}
.links a:hover {
    opacity: 0.7;
}
