.mobile-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100vw;

  margin: auto;
  background-color: #333;

  color: white;

  padding: 10px;
  position: fixed;
  z-index: 3;
}

.topnav {
  background-color: #333;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.menu-button {
  background: none;
  border: none;
  color: white;
  font-size: 17px;
  padding-right: 5%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.menu-button:hover {
  color: rgb(255, 255, 255);
}

.dropdown-content {
  display: none;
  background-color: #333;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 2%;
  position: absolute;
  top: 48px;
  right: 10px;
  width: 25vw;
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: rgb(255, 255, 255);
}

/* Extra nagy képernyők (asztali monitorok, max 1400px) */
@media (max-width: 1400px) {
  /* Ide írd a stílusokat */
}

/* Nagy képernyők (laptopok, max 1200px) */
@media (max-width: 1200px) {
  /* Ide írd a stílusokat */
}

/* Közepes képernyők (tabletek, max 992px) */
@media (max-width: 992px) {
  /* Ide írd a stílusokat */
}

/* Kis képernyők (mobilok, max 768px) */
@media (max-width: 768px) {
  /* Ide írd a stílusokat */
}

/* Extra kis képernyők (kis mobilok, max 576px) */
@media (max-width: 576px) {
  /* Ide írd a stílusokat */

  .logo {
    width: 60%;
  }
  .video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
  }
  .mobile-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100vw;

    margin: auto;
    background-color: #333;

    color: white;

    padding: 10px;
    position: fixed;
    z-index: 3;
  }

  .menu-button {
    background: none;
    border: none;
    color: white;
    font-size: 17px;
    padding-right: 15%;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
}
