body {
  background-color: #252525;
  background-image: url(../img/csepp.png);
  color: white;
}

.icon-title {
  width: 50px;
  height: 50px;
}

.pagetitle {
  margin-top: 5px;
}

.titlediv {
  justify-content: center;
  gap: 5px;
}

h1 {
  font-weight: bold;
}

#dialog {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  display: none;
}

.window {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.window-elements {
  background-color: #020202;
  padding: 70px;
  border-radius: 10%;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.mine {
  margin: 10px;
  width: 50px;
  height: 50px;
}

.p-25 {
  padding: 25px;
}

#main {
  margin: 0 auto;
  width: 400px;
  background-color: #141414;
  border-radius: 25px;
  padding: 25px;
}

#ujrakezd {
  display: none;
}

#iv {
  display: none;
  margin-top: 25px;
  background-color: #1a1a1a;
  border-radius: 25px;
  width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.info-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e0e0e0;
  color: #333;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1000;
}

.info-icon:hover {
  background-color: #d0d0d0;
}

#info {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  display: none;
}

@media only screen and (max-width: 375px) {
  body {
    padding: 10px;
  }

  .mine {
    width: 40px;
    height: 40px;
  }

  #main {
    width: auto;
  }

  .pagetitle {
    margin-top: 10px;
  }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-in {
    animation: fadeIn 0.3s forwards;
}

.fade-out {
    animation: fadeOut 0.3s forwards;
}