* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Passion One', cursive;
  letter-spacing: 1px;
  background-color: #2196F3;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  padding: 30px;
  align-items: center;
}

.bar-actions {
  display: flex;
}

.bar-actions a {
  background-color: #0D47A1;
  border: 3px solid #1565C0;
  padding: 5px 15px;
  text-decoration: none;
  color: #90CAF9;
  font-size: 22px;
  font-weight: 500;
  margin-right: 10px;
  transition: background-color .3s;
}

.bar-actions a:last-child {
  margin-right: 0;
}

.menu {
  margin: 0 auto;
  display: flex;
}

.menu a {
  background-color: #0c48a0;
  color: #90CAF9;
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  transition: background-color .3s;
}

.menu a:hover, .bar-actions a:hover {
  background-color: #1976D2;
}

.menu a.active {
  background-color: white;
  color: #0D47A1;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store {
  padding: 0 30px;
  flex: 1;
  display: flex;
}

.store-big {
  display: flex;
  flex-direction: column;
  flex: 3;
}

.store-section-info {
  position: relative;
  margin-bottom: 20px;
}

.store-section-info h1 {
  color: white;
  font-size: 35px;
  background-color: #2396f3;
  position: relative;
  z-index: 2;
  width: fit-content;
  padding-right: 10px;
}

.store-section-info:after {
  content: '';
  width: 100%;
  background-color: #64B5F6;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.store-items {
  display: flex;
  flex: 1;
}

.store-item {
  display: flex;
  flex: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 20px;
  flex-direction: column;
  border: 3px solid black;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 0px #FFEB3B;
  transition: box-shadow .3s;
}

.store-item:hover {
  box-shadow: 0 0 0 5px #FFEB3B;
}

.store-item:last-child {
  margin-right: 0;
}

.store-item-shadow {
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 150px -25px black;
  position: absolute;
}

.rare {
  background-color: #0075d2;
  border-color: #61afff;
}

.epic {
  background-color: #784fc1;
  border-color: #ba9dec;
}

.common {
  background-color: #388E3C;
  border-color: #4CAF50;
}

.store-item-details {
  margin-top: auto;
  backdrop-filter: blur(3px);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.store-item-details h1 {
  color: #dcefff;
  font-size: 40px;
}

.store-item-details p {
  font-family: 'Roboto', sans-serif;
  color: #8e8e8e;
}

.store-item-price {
  text-align: center;
  padding: 10px;
  font-size: 25px;
  color: white;
  background-color: #09224a;
  position: relative;
}

.store-small {
  margin-left: 40px;
  flex: 2;
  display: flex;
  flex-direction: column;
}

.store-items-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store-items-group .store-items {
  margin-bottom: 20px;
}

.store-items-group .store-items:last-child {
  margin-bottom: 0;
}

.info-section {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin: 50px 0;
  color: #c0e3ff;
  font-size: 18px;
}

.bottom-bar {
  background-color: #08224a;
  padding: 15px 30px;
  display: flex;
}

.bottom-bar a {
  margin-left: auto;
  border: 1px solid;
  color: #acc1de;
  font-family: 'Roboto', sans-serif;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  background-color: transparent;
  transition: background-color .3s;
}

.bottom-bar a:hover {
  background-color: #193f75;
}