@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&family=Oswald:wght@700&family=Raleway:wght@500&family=Open+Sans:wght@400&display=swap');

body {
  background-color: #101010;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

nav {
  width: 100%;
  font-family: 'Raleway', sans-serif;
  background-color: #00000060;
  padding: 2em 0em 2em 0em;
  margin-bottom: 1em;
}

nav li{
  display: inline;
  padding: 1em;
  transition: font-size 0.5s, color 0.5s;
}


nav li:hover {
  font-size: 1.1em;
  color: khaki;
  
}


@media (max-width: 450px) {
  nav li{
    padding: 0.2em;
  }
}

nav li a {
  color: white;
}

/* nav li a:hover{
  color: khaki;
} */


button {
  padding: 0.5em 1em;
  display: block;
  margin: auto;
  background-color: #00000070;
  border: none;
  border-radius: 0.25em;
  font-size: inherit;
  font-family: inter;
}

button:hover {
  background-color: #000000aa;
}

.centerize {
  text-align: center;
  width: fit-content;
  display: block;
  margin: auto;
}

.mainProfileImage {
  /* border-radius: 20%; */
  display: block;
  /* border:1px solid #101010; */
  width: 50vw;
  max-width: 24em;
}

#mainImageContainer {
  padding-top: 2em;
}


.contactContainer {
  display: grid;
  grid-template-columns: 50% 50%;
  margin: 0.5em;
}

@media (max-width: 600px) {
  .contactContainer {
    grid-template-columns: 100%;
  }
}




.content {
  max-width: 800px;
  margin: 20px auto;
}

@media (max-width: 820px) {
  .content {
    padding: 0px 2em;
  }
}

.contactText {
  padding: 1.5em;
  padding-top: 0;
  /* margin: 1em; */
}

.triviaItem {
  padding: 1em;
  font-family: 'Raleway', sans-serif;
  line-height: 1.8;
}

.triviaItem p {
  padding: 0.5em;
  padding-left: 2em;
}

.bandsImageContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.aBand {
  display: block;
  background-color: #312724;
  width: fit-content;
  border-radius: 0.5em;
  padding: 0.5em;
  margin: 0.5em;
}

.bandImage {
  height: 8em;
}

.bandName {
  display: block;
  width: fit-content;
  margin: auto;
}

.triviaImageContainer {
  height: 8em;
  float: right;
  padding: 0.5em;
  background-color: #312724;
  width: fit-content;
  border-radius: 0.5em;
  margin: 0.3em;
}

@media (max-width: 600px) {
  .triviaImageContainer {
    display: block;
    float: unset;
    margin: auto;
  }
}

.triviaImage {
  height: 8em;
}

.contactItem {
  padding: 1em;
  margin: 0.5em;
}

.contactItem > p {
  text-align: center;
}
.withBackground {
  background-color: #10101090;
  border-radius: 0.5em;
}


.withBackground:hover {
  background-color: #1010107a;
}

.withBackground > h1, h2 {
  margin-top: 0;  
}

.contactIcons {
  height: 0.9em; 
  transform: translateY(0.1em);
  fill: white;
}

#firstpageContent {
  font-family: 'Raleway', sans-serif;
  text-align: justify;
  line-height: 1.8;
  text-indent: 4em;
  background-color: #071935;
  border-radius: 20px;
  padding: 0.2em 2em;
}

#footerText {
  margin: 8em auto 0.8em auto;
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 0.8em;
  padding: 1em;
}

.navIcons {
  padding-left: 0.4em;
}

