/*==== CSS BY REY ====*/

@font-face {
    font-family: IBMP;
    src: url(../fonts/IBMPlexMono-Regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: IBMP;
    src: url(../fonts/IBMPlexMono-Bold.ttf);
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: IBMP;
    src: url(../fonts/IBMPlexMono-Italic.ttf);
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: IBMP;
    src: url(../fonts/IBMPlexMono-ExtraLight.ttf);
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

  .alert {
    margin: 20px;
    padding: 20px;
    background-color: #f44336;
    color: white;
  }
  
  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .closebtn:hover {
    color: black;
  }

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    font-style: normal;
}

body {
    background-image: url("../images/hg_site.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-color: #13161B;
    margin: 0;
    padding: 0;
}

a {
    color: var(--color-Schrift-WEISS);
    text-decoration: none;
}

a:hover {
    color: var(--color-Schrift-LILA);
    text-decoration: underline;
}

p {
  line-height: var(--inline);
}

h2 {
  line-height: var(--inline);
}

body {
    color: var(--color-Schrift-WEISS);
    --color-HG: #13161B;
    --color-HG-TRANSP: #13161bc7;
    --color-Schrift-SCHWARZ: #000;
    --color-Schrift-GRAU: #555;
    --color-Schrift-WEISS: #fff;
    --color-Schrift-LILA: #9146FF;
    --color-Schrift-DUNKELLILA: #5A1EB3;
    --color-Schrift-KONTRAST: #FFF945;
    --color-Schrift-ROT: #ff0000;
    --color-Schrift-GRÜN: #2bff00;

    --font: "IBMP", monospace;
    --inline: 3ch;
    --font-scale: 0.3vw;

    --shadow: 2px 2px 4px 2px #000;
}

.schwarz {
    color: var(--color-Schrift-SCHWARZ);
}

.grau {
    color: var(--color-Schrift-GRAU);
}

.weiss {
    color: var(--color-Schrift-WEISS);
}

.lila {
    color: var(--color-Schrift-LILA);
}

.dunkellila {
    color: var(--color-Schrift-DUNKELLILA);
}

.kontrast {
    color: var(--color-Schrift-KONTRAST);
}

.kontrast:hover {
    cursor: pointer;
    color: var(--color-Schrift-KONTRAST);
    background-color: var(--color-Schrift-DUNKELLILA);
}

/*==== HEADER ====*/

.socialnetwork {
    background-color: var(--color-Schrift-SCHWARZ);
    margin: 0;
    padding: 1px;
}

.social_links > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social_links > ul li {
    list-style: none;
    margin-right: 50px;
}

.social_links > ul li a {
    color: var(--color-Schrift-GRAU);
    transition: all 1s ease-out;
}

.social_links > ul li a:hover {
    color: var(--color-Schrift-LILA);
    text-shadow: 2px 2px 2px var(--color-Schrift-LILA);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    font-family: var(--font);
    font-weight: 400;
    font-size: calc(12px + var(--font-scale));
    background-color: var(--color-HG-TRANSP);
    box-shadow:  var(--shadow);
}

nav > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 20px;
}

nav > ul li {
    margin: 8px;
    list-style: none;
}

header img {
    width: 100px;
    height: 100px;
}

/*==== BODY CONTENT ====*/

.containerInhalt {
    font-family: var(--font);
    font-weight: 400;
    line-height: var(--inline);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px;
}

.flex1 {
    margin: 10px;
    padding: 20px;
    background-color: var(--color-HG-TRANSP);
    box-shadow: var(--shadow);
}

.flex2 img {
    margin-left: 30%;
    margin-bottom: 20%;
    width: 400px;
}

.software > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.software > ul li {
    list-style: none;
}

/*==== FOOTER ====*/

footer {
    font-family: var(--font);
    font-weight: 400;
    font-size: calc(12px + var(--font-scale));
    background-color: var(--color-HG-TRANSP);
    box-shadow:  var(--shadow);
}

footer > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

footer > ul li {
    margin-top: 8px;
    margin-right: 40px;
    list-style: none;
}

.copy {
    text-align: center;
    padding: 8px;
}

/*==== EXTRAS ====*/

#followerAnzeige {
    color: var(--color-Schrift-KONTRAST);
}

.online {
    color:var(--color-Schrift-GRÜN);
    font-size: 20px;
}
  
.offline {
    color: var(--color-Schrift-ROT);
    font-size: 20px;
}

/*==== ls22mods Modliste =====*/

.modliste h2 {
    font-family: var(--font);
    font-weight: 700;
    font-style: bold;
    margin-left: 20px;
    color: var(--color-Schrift-LILA);
    text-decoration: underline;
    text-shadow: 2px 2px 2px var(--color-Schrift-GRAU);
  }
  
  .modliste p {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  .mod-table {
    font-family: var(--font);
    font-weight: 400;
    font-style: normal;
    font-size: calc(14px + var(--font-scale));
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    margin: auto;
    text-align: center;
  }
  
  .mod-table thead {
    font-family: var(--font);
    font-weight: 700;
    font-style: bold;
    text-decoration: underline;
    background-color: var(--color-HG-TRANSP);
    color: var(--color-weiss);
    text-align: center;
    box-shadow: var(--shadow);
  }
  
  .mod-table th,
  .mod-table td {
    text-align: center;
    padding: 12px;
  }
  
  .mod-table th {
    font-weight: bold;
  }
  
  .mod-table td > a {
    color: var(--color-weiss);
    text-decoration: none;
  }
  
  .mod-table td > a:hover {
    color: var(--color-Schrift-LILA);
    text-decoration: underline;
  }

  /* ==== Moddownload ====*/

  

.modtitel { /* Überschrift in eigenen Container */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    text-decoration: underline;
    margin-left: 20px;
  }
  
  .moddownload {
    display: flex;
  }
  
  .modinfos { /* Hauptbereich für Inhalt */
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-left: 20px;
    margin-right: 20px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .modbeschreibung {
    padding: 20px;
  }
  
  .modtabelle { /* Tabelle für Verion hersteller etc. */
    display: flex;
    justify-content: space-between;
  }
  
  .mod-cell { /* Platz für die Einzelheiten */
    padding: 5px;
    font-weight: 400;
  }
  
  .moddownloadbtn {
    display: flex;
    align-items: center;
  }
  
  .dl_btn {
    width: 237px;
    height: 54px;
    background-color: #9e7bd1a1;
    border: 1px solid #000;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 2px 10px 4px #00000075;
  }
  
  .dl_btn:hover {
    background-color: #9E7BD1;
    color: #000;
    border: 2px solid #000;
    border-radius: 5px;
    box-shadow: 0px 2px 10px 4px #9E7BD1;
  }
  
  .dl_btn::before {
    width: 78px;
    height: 54px;
    background-color: black;
    content: ".ZIP ";
    padding: 18px;
    margin-right: 20px;
    color: #fff;
  }
  
  .bildflex {
    margin: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .modbild {
    width: 400px;
    height: 400px;
    background-color: #9E7BD1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid #9E7BD1;
  }
  
  .changelog {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .changelogprot {
    width: 50%;
    padding: 20px;
  }
  
  .werbung {
    padding: 20px;
  }
  
  .werbelogos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
  }
  
  .werbelogos img {
    width: 315px;
    height: 64px;
  }
  
  .werbebtn {
    cursor: pointer;
    padding: 20px 20px;
    border: none;
    font-weight: 400;
    background-color: #9e7bd198;
    color: #fff;
    transition: 0.3s ease 0s;
  }
  
  .werbebtn:hover {
    background-color: #9E7BD1;
    color: #000;
    font-weight: 700;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 2px 2px 5px 2px #9e7bd1ad;
  }
  
  .link {
    margin: 10px;
  }

  /*==== Kontakt ====*/

.formular {
    margin: auto;
  }
  
  .formular h2, p {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  form {
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    color: var(--color-Schrift-WEISS);
  }
  
  label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    background-color: var(--color-HG-TRANSP);
    color: var(--color-Schrift-WEISS);
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: solid 1px;
    margin-bottom: 20px;
  }
  
  textarea {
    height: 150px;
  }
  
  input[type="submit"] {
    width: 20%;
    text-align: center;
    background-color: var(--color-Schrift-DUNKELLILA);
    color: var(--color-Schrift-WEISS);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: var(--color-Schrift-LILA);
  }

  .kontaktbild img {
    width: 800px;
    height: auto;
    box-shadow: var(--shadow);
  }

  .highlight {
    background-color: rgba(255, 0, 234, 0.185);
    color: var(--color-Schrift-WEISS);
}
  
