@font-face {
    font-family: sans-serif;
    src: url(fonts/SourceSansPro-BlackItalic.ttf) format(ttf);
    font-weight: normal;
    font-style: oblique;
}
* {
    box-sizing: border-box;
    font-family: sans-serif;
    color: #777 ;
}

html, body {
    margin: 0;
    padding: 0;
}

.nav ul {
    margin: 0;
}

.nav li {
    display: inline;
}

.nav a {
    display: inline-block;
    color: white;
    padding: 3em;
    text-decoration: none;
}

.nav a:hover {
    background-color: rgba(225, 225, 225, .20);
} 

.main-nav {
    text-align: center;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(225, 225, 225, .20);
    font-weight: lighter;

}

.main-nav li {
    padding: 0.5%;
}

.main-header {
    background-color: rgba(0, 0, 0, .6);
    background-image: url(images/backimg-crop.jpg);
    background-blend-mode: multiply;
    background-size: cover;
    padding-bottom: 30px;
}


.team-name {
    color: white;
    margin: 0;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 4em;
    font-family: sans-serif;
    text-align: center;
    font-weight: normal;
    font-style: oblique;

}

.team-name-large {
    font-size: 5em;
} 

.content-section {
    margin: 1em;

}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.section-header{
    font-family: monospace;
    font-weight: normal;
    color: #333;
    text-align: center;
    font-size: 2.5em;
}

.about-image {
    float: left;
    margin: 15px;
    border-radius: 30%;

}

.main-footer {
    background-color: rgb(0, 0, 0);
    color: white;
    padding: .25em 0;
    

}

.main-footer-container {
    display: flex;
    align-items: center;
}

.main-footer-container ul {
    flex-grow: 1;
    text-align: end;
}

.footer-nav li {
    padding: 0.5em;
    display: inline-flexbox;
}

.footer-nav img {
    width: 30px;
    height: 30px;
}

.team-name-footer {
    font-size: 3em;
}

/* home page stying */

.btn {
    text-align: center;
    vertical-align: middle;
    padding: .67;
    cursor: pointer;
    padding: 10px;
    
    
}

.btn-header {
    background: rgba(255, 255, 255, .1);
    border:rgb(92, 2, 2) solid 2px;
    margin: .5em 15% 2em 15%;
    font-size: 1.5em;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
    padding: .67em;
    padding-left: 2em;
    padding-right: 2em;
    font-size: 40px;
    color: rgba(253, 253, 253, .35);
    
    
}

.btn:hover {
    background: rgba(255, 255, 255, .3);
    transition: ease;
}

.btn-2 {
  margin: 0 auto;
  display: block;
  color: rgb(92, 2, 2);
  border-radius: 50%;
  font-size: 4em;
  padding: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, .1);
  border: 1em, solid, rgb(92, 2, 2);
}


.movies-row {
    border-bottom: 1px solid black;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.movies-row:last-child {
    border-bottom: none;
}

.movie-item {
    display: inline-block; 
    padding-right: .5em;
 
}



.movie-date {
    font-weight: bold;
    color: #555;
    width: 11%;
}

.movie-name {
    width: 24%;
  
}

.movie-theatre {   
    width: 42%;

}

.movie-btn {
    max-width: 19%; 
}

.btn-primary {
    color: white;
    background: rgb(255, 38, 0);
    border: none;
    border-radius: .3em;
    font-weight: bold;
}

.btn-primary:hover {
    background: rgb(105, 16, 1);
}


/* store page styling */
 
.shop-item {
    margin: 30px;
 
}

.shop-item-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.shop-item-img {
    height: 250px;
}

.shop-item-details {
    display: flex;
    align-items: center;
    padding: 5px;
}

.shop-item-price {
    flex-grow: 1;
    color: #333;
}



.shop-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    
}

.cart-header {
    font-weight: bold;
    font-size: 1.2em;
    color: #333;

}

.cart-column {
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    margin-right: 1.5em;
    padding-bottom: 10px;
    margin-top: 10px;
}

.cart-row {
    display: flex;
}

.cart-item {
    width: 45%;

}

.cart-item-title {
    margin-left: .5em;
    color: #333;
    font-size: 1.2em;
}

.cart-item-img {
    width: 75px;
    height: auto;
    border-radius: 10px;
}



.cart-price {
    width: 30%;
    font-size: 1.2em;
    color: #333;

}

.cart-quantity {
    width: 35%;
}

.btn-danger {
    color: white;
    background: rgb(255, 38, 0);
    border: none;
    border-radius: .3em;
    font-weight: bold;
    margin-left: 2em;
    
}

.btn-danger:hover {
    background: rgb(105, 16, 1);
    
}

.cart-quantity-input {
    height: 2.5em;
    width: 50px;
    border-radius: 5px;
    border: 1px solid rgb(255, 38, 0);
    background: #eee;
    color: #333;
    padding: 0;
    text-align: center;
    font-size: 1.1em;
}

.cart-row:last-child {
    border-bottom: none;
}

.cart-row:last-child .cart-column {
    border-bottom: none;
}

.cart-total {
    text-align: end;
    margin-top: 10px;
    margin-right: 10px;

}

.cart-total-title {
    margin-right: 25px;
    font-weight: bold;
    color: black;
    font-size: 1.5em;

}

.cart-total-price {
    color: #333;
    font-size: 1.2em;

}

.btn-purchase {
    display: block;
    margin: 40px auto 80px auto;
    font-size: 1.75em;
    text-decoration: none;
    padding: .4em;
    transition: all 200ms ease;
}

.btn-purchase:hover {
    transform: scale(1.2);

}

.btn-link {
    text-decoration: none;
    
}










