@import url('https://fonts.googleapis.com/css2?family=Inspiration&family=Ubuntu&display=swap');

/* Define CSS variables */
:root {
  --primary-color: rgb(223, 207, 189); /* Blue */
  --secondary-color: rgb(23, 23, 27); /* Green */
}


body {
  /* background-color: rgb(221, 215, 228); */
  background-color: var(--primary-color);
  /* background-image: url('texture.jpg'); */
}

h1, p {
  color: var(--secondary-color);
}

.links {
  display: flex;
  justify-content: space-around;
  max-width: 500px;
  margin: auto;
  font-size: 20px;
}

a {
  font-family: 'Ubuntu', sans-serif;
  color: var(--secondary-color);
  text-align: center;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#title {
  width: 100%;
  margin: auto;
  font-size: 64px;
  font-family: 'Ubuntu', sans-serif;
  /* font-family: 'Inspiration', cursive; */
  margin-top: 24px;
  text-align: center;
  margin-bottom: 20px

}

#band-photo {
  width: 90%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  border-radius: 10px;
  border-color: var(--secondary-color);
  border-style: double;
  border-width: 7px;
}