/*Kezdő háttér beállítása*/
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  transition: all 0.5s;
  color: #007bff; /* Elektromos kék szövegszín */
  background: #0575e6; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #021b79,
    #0575e6
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #021b79,
    #0575e6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-family: "Roboto", sans-serif; /* Modern, tiszta betűtípus */
}

/*SKIN választó menü*/
.menu-icon {
  position: fixed;
  top: 5px;
  left: 5px;
  cursor: pointer;
  z-index: 1000;
  font-size: 20px;
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 900;
}
.menu.active {
  transform: translateY(0); /* Ha aktív, láthatóvá válik */
}
.menu-item {
  padding: 5px;
  border-bottom: 1px solid #ccc;
  background-color: #232323;
  text-indent: 40px;
  text-shadow: none;
}
.menu-item:hover {
  background-color: rgba(0, 0, 0, 0.3);
  text-indent: 50px;
}

/*További "másik" funkció ikonja a sarokban*/
.function-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  max-width: 60px;
  max-height: 60px;
  border-radius: 50px;
  background-color: white;
  border: 1px solid black;
  box-shadow: 2px 2px 5px black;
}
