/* ================================= 
Base Element Styles - Home Page
==================================== */
* {
	box-sizing: border-box;
}
body {
  background:     
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('../images/bombies.png');
  background-size: cover;
}
.main-content {
  flex: 1;
}

/* ================================= 
Main Content
==================================== */
.main-header {
  display: flex;
}
.main-header {
  flex-direction: column;
  justify-content: center;
}
#home-logo {
  align-self: center;
}
#credits-btn {
  align-self: flex-end;
  margin-right: 30px;
  margin-top: -150px;
}
h1.heading {
  margin-top: 200px;
}
p.subtitle {
  margin-bottom: 100px;
}
.button {
  width: 90px;
  height: 38px;
  background: rgba(0, 0, 0, 0.5);
  font-family: Lato;
  font-style: normal;
  line-height: normal;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 10px;
  border-radius: 4px;
}
.button:hover {
  background: #fff;
  color: #333;
}

/* ================================= 
Home Menu - Medium/Large Devices
==================================== */
.home-menu,
.home-row,
.large-menu-item {
  display: flex;
  flex-wrap: wrap;
}
.home-menu {
  flex-direction: column;
  align-items: center;
}
.large-menu-item {
  flex: 1;
  flex-direction: column;
  align-items: center;
  margin: 3px;
  padding: 40px 0 40px 0;
  background: rgba(0, 0, 0, 0.4);
}
.round-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border: 4px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 50%;
  margin-bottom: 50px;
}
.item-title {
  position: relative;
  top:-50;
  z-index: 2; 
  margin: 0 3px 10px 0;

  font-family: Josefin Sans;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;  
}
.item-subtitle {
  z-index: 3; 
  padding: 0 50px 0 50px;

  font-family: Josefin Sans;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-size: 18px;
  text-align: center;
  color: #C4C4C4;
}

/* ================================= 
Home Slider - Mobile Menu
==================================== */
.slider {
  margin-bottom: 50px;
}
.slider .indicators .indicator-item.active {
  background-color: #FFFFFF;
  opacity: 1;
  margin: -4px 10px;
  height: 13px;
  width: 13px;
}
.slider .slides li img {
  height: 35%;
  width: 35%;
  background-size: cover;
  background-position: center;
}
.mobile-round-image {
  object-fit: cover;
  object-position: center;
  border: 4px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 50%;
  margin: 20px;
}
.slider .indicators .indicator-item {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 6px;
  width: 6px;
  margin: 0 10px;
  background-color: #FFFFFF;
  opacity: 0.5;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  border-radius: 50%;
}

/* ================================= 
  Media Queries - Small Screens
==================================== */
@media (min-width: 320px) and (max-width: 600px) {
  #home-logo {
    width: 15%;
    margin-top: -2px;
  }
  h1.heading {
    font-size: 40px;
    margin-top: 50px;
  }
  p.subtitle {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
  }
}