@font-face {
	font-family: 'ZeitungMonoPro-Light';
	src: url('/fonts/ZeitungMonoPro-Light.eot?#iefix') format('embedded-opentype'),
		 url('/fonts/ZeitungMonoPro-Light.woff2') format('woff2'),
		 url('/fonts/ZeitungMonoPro-Light.woff') format('woff'),
		 url('/fonts/ZeitungMonoPro-Light.ttf') format('truetype'),
		 url('/fonts/ZeitungMonoPro-Light.svg#ZeitungMonoPro-Regular') format('svg');
}

.ZeitungMonoPro-Light{
	font-family: 'ZeitungMonoPro-Light';
	font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 10px;
    background-color: #e8e6f4;
    font-family: 'ZeitungMonoPro-Light', monospace;
    color: #374176;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 100px;
}

.emoji {
    font-size: 5em; /* Adjust size as needed */
    position: absolute;
}
        
.container {
    box-sizing: border-box; /* Makes sure the padding is included in the width */
    max-width: 700px;
    width: calc(100% - 20px);
    padding: 0 10px;
    margin: 0 auto;
}

.logo {
    width: 80%;
    max-width: 500px;
    height: auto;
    position: fixed;
    right: 10px;
    top: 10px;
}

p {
    font-size: 20px;
    line-height: 1.6;
}

.small-text {
    font-size: 10px;
    line-height: 1.7;
}

a:link {
    color: #374176;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: .2rem;
    text-decoration-style:dotted;
}

a:visited, a:hover, a:focus {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: .26rem;
    text-decoration-style:dotted;
}

@media (max-width: 800px) {
    .container {
        max-width: 650px;
    }
    p {
        font-size: 18px;
    }
}


@media (max-width: 700px) {
    .container {
        max-width: 550px;
    }
    p {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 500px;
    }
    p {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .container {
        max-width: 450px;
    }
    p {
        font-size: 13px;
    }
    small-text {
        font-size: 11px;
    }



@media (max-width: 400px) {
    .container {
        max-width: 370px;
    }
    p {
        font-size: 12px;
    }

}