* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #290000;
    font-weight: bold;
    background: linear-gradient(90deg, rgba(41, 0, 0, 1) 0%, rgba(110, 0, 0, 1) 50%, rgba(189, 0, 0, 1) 100%);
    line-height: 1.6;
}

header {
  background-color: red;
  
    background: #290000;
    background: linear-gradient(90deg, rgba(41, 0, 0, 0.9) 0%, rgba(110, 0, 0, 0.5) 50%, rgba(189, 0, 0, 0.3) 100%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(3px);
  background-size: cover;
  background-position: bottom;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 3;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  padding-right: 2rem;
}

.logo {
    display:flex;
  font-size: 1.5rem;
  font-weight: bold;
  align-items: center;
  gap: 1rem;
}

.logo img{
    height: 5rem;
    padding: 0.4rem;
  transform: scale(1);
  transition: .2s;
}
.logo img:hover{
  transform: scale(1.3);
  transition: .2s;
}

.nav-links {
  list-style: none;
  display: flex;
  font-size: 1.3rem;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}
.nav-links li a:hover {
  color: white;
  text-decoration: underline;
}

.banner {
  color: white;
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  padding: 12rem 1rem;
  background-image: url(../Bilder/Banner.png);
  background-position: bottom;
}

h3{
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
h2{
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}

a{
  color: #ff9a9a;
  text-decoration: none;
}
a:hover{
  color: rgb(255, 92, 92);
  text-decoration: underline;
}

.text{
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  text-align: center;
  color: #fff;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 1.35rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.container {
  display: flex;
  flex-direction: column;
  margin: 2rem;
}


.sidebar {
  flex: 1;
  color: white;
  background-color: rgba(41, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(3px);
  padding: 1rem;
  margin-right: 2rem;
  border-radius: 8px;
}
article{
  padding: 50px;
  padding-bottom: 150px;
  padding-top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
article img{
  width: 500px;
  border-radius: 40px;
  height: fit-content;
}
.left{
  justify-content: flex-start;
}
.right{
  justify-content: flex-end;
}

.general {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  height: 200px;
  font-size: 1.5rem;
}
.content {
  color: white;
  background-color: rgba(41, 0, 0, 0);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(3px);
  margin: 5rem;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 3rem;
  border-radius: 8px;
}
.content-right {
  color: white;
  background-color: rgba(41, 0, 0, 0);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(3px);
  margin: 5rem;
  margin-top: 0;
  margin-bottom: 0;
  text-align: right;
  padding-left: 3rem;
  padding-right: 0;
  border-radius: 8px;
}
.content ul{
  margin-left: 3rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #262626;
  color: white;
  margin-top: 2rem;
}
footer a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}
footer a:hover{
    color: white;
    text-decoration: underline;
}
footer img{
  width: 3rem;
  margin-left: 5em;
  margin-right: 5em;
  transform: scale(1);
  transition: .2s;
}
footer img:hover{
  transform: scale(1.3);
  transition: .2s;
}
.instagram img:hover{
  content: url("../Bilder/instagram_color.png");
}
.youtube img:hover{
  content: url("../Bilder/youtube_color.png");
}
.twitch img:hover{
  content: url("../Bilder/zucken_color.png");
}
.discord img:hover{
  content: url("../Bilder/discord_color.png");
}
.socials a:hover{
  text-decoration: none;
}
