body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Figtree', sans-serif;
    background-image: url('/files/background-image.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    padding: 1rem;
}

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

.card-image img {
    max-width: 100%;
    height: auto;
	width: 80%;
}

.card-content {
	padding: 1rem;
	border: 1px solid white;
	border-radius: 5px;
	margin: 2rem 0;
	}

.card-content h2 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
	color: white;
}

.card-content p {
    font-size: 13px;
    color: white;
}

.links a {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background-color: #001F35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

.links a:hover, .links a:active {
    background-color: #0A4976;
}

footer {
    margin-top: 20px;
}

footer p {
    font-size: 13px;
    color: white;
}
