@font-face {
  font-family: myFont;
  src: url(Maus-1jz64.ttf); 
}

body {
    margin: 0;
    background-color: black;
}

h1 {
    color: #ff4800;
    text-align: center;
    font-family: myFont;
    padding: 30px 0;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.responsive-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16 / 9;
}

.container img {
    width: clamp(200px, 60%, 570px);
    min-width: 300px;
}

p, a {
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-size: calc(6px + 0.5vw);
}