    body {
      text-align: left;
      font-family: Arial, sans-serif;
    }

    .navbar {
      padding: 10px;
      background-color: aliceblue;
    }

    th,td {
      padding-left: 15px;
    }


    figcaption {
      font-family: sans-serif;
    }

    header {
      background: thistle;
    }

    .carousel {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: auto;
      overflow: hidden;
    }

    main a:link {
      color: #0055ff;
    }

    main a:visited {
      color: blueviolet;
    }

    nav ul {
      list-style: none;
      padding: 0;
      display: flex;
      gap: 1rem;
    }

    nav a {
      text-decoration: none;
      color: black;
      font-weight: normal;
    }

    nav a.active {
      font-weight: bold;
    }


    .nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }


    #styleswitch {
      text-align: right;
      margin: 10px;
    }

    body.large {
      font-size: 2rem !important;
    }


    body.large .container {
      max-width: 100% !important
    }

    body.large .col-lg-6,
    body.large .col-md-6,
    body.large .col-md-4,
    body.large .col-md-8,
    body.large .col-lg-4 {
      flex: 0 0 100% !important;
      width: 100% !important;
      max-width: 100% !important;
    }

    body.large fieldset {
      margin: 30px 0;
    }


    :is(body.large) :is(input[type="text"], input[type="url"], input[type="email"], textarea) {
      width: 100%;
      max-width: 95%;
      font-size: inherit;
      margin: 20px 0;
    }




    :is(body.large) :is(input[type="checkbox"], input[type="radio"]) {
      transform: scale(3);
      margin: 10px;
    }

    :is(body.large) :is(input[type="submit"], input[type="reset"], select) {
      width: auto;
      height: 60px;
      font-size: inherit;
      padding: 10px;
    }

    #skiptocontent * {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      top: auto;
      overflow: hidden;
    }


    #skiptocontent a:focus {
      position: static;
      width: auto;
      height: auto;
    }

    @media (min-width: 768px) {
      .nav-list {
        flex-direction: row;
      }
    }

    @media screen and (max-width:768px) {


      body:not(.large) table {
        width: 100%;
        border-collapse: collapse;
        position: relative;
      }

      body:not(.large) th,
      body:not(.large) td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 6px;
        border: 0 !important;
      }

      body:not(.large) caption,
      body:not(.large) details {
        display: block;

      }

      body:not(.large) details[open] {
        background: black;
        color: white;
        padding: 0 10px;
      }

    }


    @media print {

      details,
      nav,
      audio,
      iframe,
      video,
      div.carousel,
      meter,
      hr,
      canvas {
        display: none !important;
      }

      p {
        text-align: justify;
      }

      figure,
      footer p {
        text-align: center !important;

      }

      pre {
        text-align: left;
      }

      abbr {
        text-decoration: none;
      }

      figure img {
        max-width: 10cm !important;
        max-height: 6cm !important;
      }


      .nyomtatas {
        display: block;
        border: 1px dashed gray;
        padding: 10px;
      }

      table {
        float: left;
        margin-right: 1cm;
      }

      a::after {
        content: " (" attr(href) ")"
      }

    }