* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
  background-color: black;
  color: white;
}

.header {
  height: 250px;
  padding: 16px;
  background-image: url('../images/header.jpg');
  background-position: center center;
  background-size: cover;
}

.header__title {
  text-align: left;
  /*text-transform: uppercase;*/
}

.mainmenu {
  position: sticky;
  top: 0;
  background-color: black;
}

.mainmenu__item {
  display: inline-block;
  padding: 0 32px;
  line-height: 3rem;
  text-decoration: none;
  color: white;
  border-bottom: 5px solid transparent; /* scob ne bulo "strybka" pry navedenni na menu */
}

.mainmenu__item:hover {
    background-color: #0F0D0E;
    border-bottom-color: #FF7474;
    /*border-bottom: 5px solid #FF7474;*/
}

.sidebar {
  display: inline-block;
  width: 25%;
  padding: 32px;
  /*background-color: #1c6097;*/
  float: left;
}

.content {
  display: inline-block;
  width: 75%;
  /*background-color: green;*/
  /*float: left;*/
}

.card {
    display: inline-block;
    width: 45%;
    height: fit-content;
    margin-bottom: 3%;
    margin-left: 3%;
    background-color: #222222;
    border-radius: 5px;
    overflow: hidden;
}

.card__header {
    position: relative;
    height: 250px;
    overflow: hidden;
    /*background: url('../images/movie.jpg');*/
    background-position: center;
    background-size: cover;
}

.card__title {
    position: absolute;
    left: 16px;
    bottom: 32px;
    font-weight: 900;
}

.card__info {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: #FF7474;
    font-weight: 900;
}

.card__content {
    padding: 16px;
    font-size: 0.9rem;
    line-height: 1.4rem;
}

.card__content p {
    margin: 0;
}

.footer {
  position: fixed;
  padding: 10px;
  bottom: 0;
  width: 100%;
  background-color: #221F20;
  text-align: center;
}
