/*------------BASE------------*/
html {
  background: #101010;
}
* {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  margin: auto;
  font-size: 20px;
  background: black;
  color: white;
}
@font-face {
    font-family: 'RobotoSlab';
    src: url('fonts/RobotoSlab-VariableFont_wght.ttf');
}
.header, main, footer {
  padding: 0 30px 0 30px;
}
.header, footer {
  line-height: 56px;
  height: 60px;
  align-items: center;
}
/*------------HEADER------------*/
.header {
  background: #101010;
}
.header nav {
  display: flex;
  justify-content: flex-end;
}
.logo {
  float: left;
  font-weight: bold;
  font-size: 1.3em;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
}
nav ul li {
  padding: 0 20px;
}
nav ul li a {
  color: white;
}
nav ul li a:visited {
  color: white;
}
nav ul li:hover {
  background: rgba(138, 138, 138, 0.8);
}
nav ul li a:hover {
  transform: scale(1.1);
  font-weight: bold;
  transition: all .2s ease-in-out;
}
/*------------MAIN------------*/
main {
  padding: 4rem 10% 4rem 10%;
  background-image: url('../images/band_bg.jpg');
  background-size: cover;
  background-position: right;
}
.bg {
  background: rgba(20,20,20,.4);
}
h1, h2 {
  text-shadow:
  -1px -1px 0 #000,
  1px -1px 0 #000,
  -1px 1px 0 #000,
  1px 1px 0 #000;
}
.contact1, .contact2, .contact3, .contact4 {
  text-align: center;
  font-size: 1.6em;
}
.contact1 {
  margin-top: 20px;
}
.bold {
  font-weight: bold;
}
.center {
  justify-content: center;
  align-items: center;
  align-self: center;
  text-align: center;
}
.italics {
  font-style: italic;
}
/*------------FOOTER------------*/
footer nav {
  display: flex;
  justify-content: center;
}
/*------------MEDIA QUERIES------------*/
@media AND screen (max-width:1026px) {

}
