* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #000000;
}

header, footer {
  flex: 0 0 auto;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5px;
}

@media screen and (orientation: landscape) and (max-height: 450px) {
  .player .player__window {
    .player__panel {
      display: none;
    }
  }
  button.player__playContainer {
    border: none;
    background: #343434;
    padding: 15px 7px 15px 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  form.header__search {
    display: none;
  }
}
