
@font-face {
    font-family: "PP Fraktion Sans";
    src: url("fonts/PPFraktionSans-Light.woff2");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: "PP Fraktion Sans";
    src: url("fonts/PPFraktionSans-Medium.woff2");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "PP Fraktion Sans";
    src: url("fonts/PPFraktionSans-Semibold.woff2");
    font-weight: 600;
    font-style: normal;
  }

body, html {
    margin: 0;
    padding: 0;
    font-family: "PP Fraktion Sans", sans-serif;
    height: 100%;
}
.container {
    display: flex;
    min-height: 100%;
}
.content {
    flex-grow: 1; 
    padding: 20px;
    box-sizing: border-box;
    flex: 1;
    font-size: 16px;
    
}
.main-content {
    max-width: 450px;
    width: 100%; /* Change from fixed width to 100% */
    padding-left: 20px;
    padding-right: 20px; /* Add right padding for consistency */
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Include padding in the width calculation */
    font-size: 14px;
}

/* Add media queries for responsive design */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack elements vertically on smaller screens */
    }

    nav {
        width: 100%; /* Full width on mobile */
        float: none; /* Remove float */
    }

    .main-content {
        padding-left: 10px; /* Reduce padding on mobile */
        padding-right: 10px;
    }

    .content {
        padding: 10px; /* Reduce padding on mobile */
    }
}
h1 {
    font-size: 24px;
    font-weight: normal;
    margin-top: 0;
}
nav {
    width: 250px;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    float: right;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    margin-bottom: 10px;
}
nav ul li a {
    /*text-decoration: none;*/
    color: #1321db;
}
/*
.dragon {
    text-align: center;
    margin-top: 40px;
    max-width: 100px;
    display: flex;
    justify-content: center;
    padding: 10px;
}
    */
.dragon svg {
    max-width: 200px;
}

.centered-image {
    display: block;
    margin: 0 auto;
    width: 20%; /* Adjust the width as needed */
}
.main-image {
    display: block;
    margin: 0 auto;
    width: 100%; /* Adjust the width as needed */
}
footer {
    text-align: center;
    font-style: italic;
    padding:10px;
    bottom: 0;
    background-color: white;
}