html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(40, 50, 40, 0.9), rgba(40, 50, 40, 0.9)), url("/img/ShopBackground.jpg");
}
body {
    margin: 2rem;
    font-size: 100%;
    min-width: 40rem;
    max-width: 66rem;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0.3rem 0.3rem 0.3rem black);
}
.content {
    background-color: white;
    font-size: 1.1rem;
    padding: 2rem;
    position: relative;
}
.header {
    color: white;
    background-color: #529aff;
    font-size: 3rem;
    font-weight: bold;
    height: 5rem;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
}
.footer {
    background-color: #202020;
    color: #e0e0e0;
    text-align: center;
    padding: 1rem;
}
.footer a {
    color: #e0e0e0;
}
.footer a:hover {
    color: white;
}
.footer a:visited:hover {
    color: white;
}
.footer a:visited {
    color: #e0e0e0;
}
.header > a {
    height: 80%;
}
.header > a > img {
    border-radius: 50%;
    border: 0.1rem solid black;
    height: 100%;
    margin-right: 1rem;
}

.columns {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.content img {
    border-radius: 0.5rem;
}
.columns div {
    flex: 1;
}
h1:first-of-type {
    margin-top: 0rem;
}
h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}
h2 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.hero {
    height: 20rem;
    background-image: url("/img/HeroCapsule.jpg");
    background-size: cover;
    background-position-x: center;
    display: flex;
    align-items: end;
}
.hero img {
    max-height: 75%;
    margin-left: 2rem;
    margin-bottom: 2rem;
}
p {
    text-align: justify;
    hyphens: auto;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mediagrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.mediagrid a img {
    width: 100%
}
.navigation {
    margin-top: 2rem;
}
input
{
	width: 300px;
	font-family: "Segoe UI";
	font-size: 12pt;
}
textarea
{
	width: 500px;
	height: 200px;
	font-family: "Segoe UI";
	font-size: 12pt;
}
.languages
{
    position: absolute;
    top: 2rem;
    right: 2rem;
}
@media (max-width: 800px) {
    .mediagrid {
        grid-template-columns: 1fr;
    }
    .columns {
        display: block;
    }
    .columns div:first-child {
        margin-bottom: 2rem;
    }
}
