html, body {
  width: 100%;
  height: 100%;
}

body {
  background-image: url(../img/hatterkep.webp);
  background-size: cover;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.fejlec {
  background-color: #9465d0;
  border-radius: 10px;
  width: 55%;
  padding: 0;
  display: flex;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  flex: 0 0 auto;
  /* ...rest of header styles... */
}

.fejlec img {
  border-radius: 10px;
  margin: 5px;
}

.fejleckepek {
  height: auto;
  display: flex;
}

#logo {
  width: 50%;
  flex: 1;
  padding: 10px;
}

#fejlecimg {
  float: right;
}

#logo img {
  width: 100%;
  height: auto;
  display: block;
}

.pelda-container {
  flex: 1;
  display: flex;
  gap: 0;
  align-items: center;
}

.pelda {
  flex: 1;
  margin: 0;
}

.pelda img {
  width: 90%;
  height: auto;
  display: block;
}

.content {
  width: 60%;
  margin: auto;
  flex: 1;
  display: flex;
  padding: 20px;
  flex-direction: column; /* Szövegek egymás alatt */
  background-color: #9465d0;
  border-radius: 10px;
  position: relative;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: white;
}

.menu {
  background-color: #9465d0;
  border-radius: 10px;
  width: 200px;
  margin: 0 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
}


.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  transition: background-color 0.3s ease;
}
.menu li:first-child {
  border-radius: 10px 10px 0 0;
}
.menu li:last-child {
  border-radius: 0 0 10px 10px;
}

.menu a {
  display: block;
  width: 100%;
  padding: 15px 0;
  box-sizing: border-box;
  text-decoration: none;
  color: white;
  text-align: center;
  
}

.menu a {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 16px;
}

.menu li:hover {
  background-color: #f096f0;
}
.content p {
  margin: 0;
  padding: 0;
  font-size: 13pt;
}
.content a {
  color: white;
  text-decoration: none;
}