body{
    background-color: rgb(56, 56, 56);
    color: aliceblue;
}
img, audio{
    width: 100%;
}
.nav, #footer{
  display: flex;
  gap: 5px;
}
.nav a, #footer a{
  color: aliceblue;
  background: linear-gradient(135deg, #d88c00, #c004ff);
  text-decoration: none;
  padding: 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav a:hover, #footer a:hover{
  background: linear-gradient(135deg, #6200ff, #006eff);
  transform: translateY(-2px);
}
.nav a, #footer a{
  position: relative;
  overflow: hidden;
}
.nav a::after, #footer a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: cornflowerblue;
  transition: width 1s ease;
}
.nav a:hover::after, #footer a:hover::after{
  width: 100%;
}
h1 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: aliceblue;
  text-shadow: 0 0 10px cornflowerblue, 0 0 20px cornflowerblue;
  animation: flicker 3s infinite alternate;
}
img{
    border-radius: 12px;
}
h2 {
  letter-spacing: 2px;
  color: aliceblue;
  text-shadow: 0 0 10px cornflowerblue, 0 0 20px cornflowerblue;
  animation: flicker 3s infinite alternate;
}
@media (min-width: 600px) and (max-width: 1199px) {
  body { font-size: 18px; }
  .header { background: linear-gradient(135deg, #4c3f91, #5f5aa2); }
  .logo { width: 100px; height: auto;}

}
@media (min-width: 1200px) {
  body { font-size: 26px; }
  .logo { width: 120px; height: auto; }
}
#container {
  display: grid;
  grid-template-areas:
    "content1 content2"
    "content3 content4"
    "content5 content6"
    "content7 content8"
    "content9 content10";
  gap: 15px;
}
section{
    border: 3px solid cornflowerblue;
    border-radius: 12px;
}
