@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

:root {
  --primaryColor: #a25f35;
  --secondaryColor: #63a1c4;
  --textColor: #474747;
  --bgColorTransparent: hsla(0, 0%, 100%, 0.2);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--secondaryColor);
}

main {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #080e39 0%, rgba(162,95,53,1) 100%);
  overflow: hidden;
  position: relative;
}
section {
  width: 100%;
  min-height: 100vh;
}
section h2 {
  color: white;
  font-size: 4rem;
  font-weight: 100;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
}
.landing-section header {
  width: 100%;
  display: flex;
  position: relative;
}
.landing-section header div:nth-child(1) {
  width: 638px;
  min-height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(assets/images/icon.png) repeat-x;
  animation:  slideInFromLeft 50s linear infinite;
  -webkit-animation:  slideInFromLeft 50s linear infinite;
}
.landing-section header div:nth-child(2) {
  width: 638px;
  min-height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(assets/images/icon.png) repeat-x;
  animation: slideInFromLeft 35s linear infinite;
  -webkit-animation: slideInFromLeft 35s linear infinite;
}
.landing-section header div:nth-child(3) {
  width: 638px;
  min-height: 200px;
  position: absolute;
  top: 200px;
  left: 0;
  background: url(assets/images/icon.png) repeat-x;
  animation: slideInFromLeft 30s linear infinite;
  -webkit-animation: slideInFromLeft 30s linear infinite;
}
.landing-section header div:nth-child(4) {
  width: 638px;
  min-height: 200px;
  position: absolute;
  top: 130px;
  left: 0;
  background: url(assets/images/icon.png) repeat-x;
  animation: slideInFromLeft 60s linear infinite;
  -webkit-animation: slideInFromLeft 60s linear infinite;
}
.landing-section header div:nth-child(5) {
  width: 638px;
  min-height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(assets/images/icon.png) repeat-x;
  animation: slideInFromLeft 45s linear infinite;
  -webkit-animation: slideInFromLeft 45s linear infinite;
}
.landing-section header div:nth-child(6) {
  width: 638px;
  min-height: 200px;
  position: absolute;
  top: 200px;
  left: 0;
  background: url(assets/images/icon.png) repeat-x;
  animation: slideInFromLeft 40s linear infinite;
  -webkit-animation: slideInFromLeft 40s linear infinite;
}

.play {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: var(--secondaryColor);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}
  100% {
    transform: translateX(300%);
    -webkit-transform: translateX(300%);
    -moz-transform: translateX(300%);
    -ms-transform: translateX(300%);
    -o-transform: translateX(300%);
}
}
.landing-section {
  background: url(assets/images/stars.png) repeat;
}
.landing-content {
  margin-top: 200px;
  width: 100%;
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-content div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--bgColorTransparent);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.landing-content div h1 {
  color: white;
  font-size: 5rem;
  font-weight: 100;
  text-align: center;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.landing-content div h2 {
  color: white;
  font-size: 5rem;
  font-weight: 100;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .landing-content div h1 {
    font-size: 1.5rem;
  }
  .landing-content div h2 {
    font-size: 3rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .landing-content div h1 {
    font-size: 3.4rem;
  }
  .landing-content div h2 {
    font-size: 4rem;
  }
}

.album-section {
  background: url(assets/images/stars.png) repeat;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
.album-content {
  width: 90%;
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 10px;
}
.album-content article {
  min-height: 500px;
  background-color: var(--bgColorTransparent);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 10px 20px;
  display: grid;
  gap: 5px;
}
.album-content article figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.album-content article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.album-content article:nth-child(1),
.album-content article:nth-child(2) {
  width: 49.51%;
  grid-template-columns: repeat(3, 1fr);
}
.album-content article:nth-child(1) figure:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.album-content article:nth-child(1) figure:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.album-content article:nth-child(1) figure:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
} 
.album-content article:nth-child(3) {
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .album-content article:first-child,
  .album-content article:nth-child(2) {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  .album-content article:nth-child(3) {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-section {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
.video-content {
  width: 90%;
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 10px;
}
.video-content article {
  min-height: 300px;
  background-color: var(--bgColorTransparent);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 10px 20px;
  display: grid;
  gap: 5px;
}
.video-content article figure {
  width: 400px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.video-content article figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
@media (max-width: 768px) {
  .video-content article figure {
    width: 100%;
    height: 200px;
  }
}


.other-content {
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 10px;
}
.other-content iframe {
  width: 49.5%;
  height: 350px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media (max-width: 768px) {
  .other-content iframe {
    width: 100%;
    height: 250px;
  }
}

footer {
  width: 100%;
  background-color: var(--textColor);
  padding: 20px 0;
}
footer h6 {
  color: white;
  font-size: 1.2rem;
  font-weight: 100;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
footer h6 span {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--secondaryColor);
}
footer h6 i {
  color: #f00;
  padding: 0 5px;
}
footer div {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer div a {
  color: white;
  font-size: 2rem;
  font-weight: 100;
  text-decoration: none;
  padding: 0 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
footer div a:hover{
  color: var(--secondaryColor);
}