.header {
  width: 100%;
  /*height: 100vh;*/
  min-height: 50vh;
  background: #102b44;

  padding-left: 11%;
  padding-right: 8%;
  position: relative;

  background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0)),
    url('images/Banner1.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  margin-bottom: 1rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 15px;
  border-bottom: 1px solid #fff;
}
.top-nav ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.top-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
.top-nav button {
  background: rgb(190, 98, 186);
  color: #fff;
  border: 0;
  outline: 0;
  border-radius: 30px;
  padding: 10px 20px;
  cursor: pointer;
}
.side-nav {
  position: fixed;
  /*background: rgb(190, 98, 186);*/
  left: 0;
  top: 0;
  width: 100px;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 50px 0px;
  background: linear-gradient(#00bcd4, #e91e63, #3f51b5, #00bcd4);
  background-size: 100% 500%;
  background-position: 0% 40%;
}
.side-nav:hover {
  animation: backcolor 20s linear infinite reverse;
}
@keyframes backcolor {
  0% {
    background-position: 0% 0%;
  }
  0% {
    background-position: 0% 400%;
  }
}
.side-nav .logo {
  width: 60px;
  cursor: pointer;
  opacity: 0.8;
}
.side-nav a {
  text-decoration: none;
  color: #fff;
  transform: rotate(-90deg) translateX(50%);
  width: max-content;
  margin-bottom: 100px;
}
.text-box {
  margin-top: 20%;
  font-size: 18px;
  color: #fff;
  margin-left: 10%;
}
.text-box h1 {
  font-weight: 500;
  font-size: 36px;
  max-width: 550px;
  line-height: 95px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.text-box .icon {
  background: #e91e63;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-box .icon img {
  width: 15px;
}

.content {
  display: flex;
  flex-direction: column;
    width: 80%;
    padding-left: 100px;
    padding-right: 8%;
    position: relative;
    color:#fff;
 }
.content div{
  display: flex;
  flex-direction: column;
    /*border: 2px solid #e91e63;*/
    border-radius: 10px;
    background: linear-gradient(90deg, #102b44, #15314b,#102b44);
 margin-bottom: 1rem;
 padding: 1rem;
}
.contentbox div{
  display: flex;
  flex-direction: row;
  border: none;
  margin-bottom: auto;

}
h1 {  color: #fff;
  text-decoration: underline #fff;  
}  
.album_cover{ width: 50%; border-radius: 10px; max-width: max-content;}
.smallpic{ width: 50%; border-radius: 50%; max-width: max-content; opacity: 30%;}
.link{
  color: #e91e63;
  font-size: 18px;
  margin-left: 3dvh;
}
.footer{
      position: bottom;
    text-align: center;
    color:#868686;
}
hr.gradient {
  height: 3px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(0, 188, 212, 1) 0%,
    rgba(233, 30, 99, 1) 21%,
    rgba(63, 81, 181, 1)51%,
    rgba(233, 30, 99, 1) 100%
  );
  margin-bottom: 1rem;
}
