
@media (min-width: 320px){
    h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    p {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 42px;
    }

    p {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 56px;
    }
}

body {
    font-family: Piazzolla, Arial, sans-serif;
    background: black;
    background-image: url("https://cdn.wikimg.net/en/hkwiki/images/thumb/3/3c/Menu_Theme_Abyss_True_Ending.png/1920px-Menu_Theme_Abyss_True_Ending.png");
    background-size: cover;
}

h1, h2, h3 {
    color: rgb(255, 255, 255);
}

p, ol, ul {
    color: white;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

form {
  color: white;
  font-family: Arial, sans-serif;
}

.navbar {
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
 
}

.navbar a {
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}
.navbar a:hover {
    color: rgb(126, 136, 173);
    cursor: pointer;
}

@media (min-width: 768px) {
    .navbar {
        background: rgb(0, 0, 0);
        flex-direction: row;
        justify-content: left;
        height: 60px;
    }

}

@media (min-width: 1024px) {
    img {
        max-width: 800px;
        margin: 0 auto;
    }
}

.home-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .home-content {
        flex-direction: row;
    }

}

.art-gallery {
  column-count: 3;
  column-gap: 15px;
  background: rgba(31, 31, 41, 0.85);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  color: #f0f0f0;
  max-width: 800px;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.art {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.art:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .art-gallery {
    column-count: 3;
  }
}

@media (max-width: 600px) {
  .art-gallery {
    column-count: 2;
  }
}

.info-box {
  background: rgba(31, 31, 41, 0.85);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
  max-width: 800px;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.animation-gallery {
  margin-top: 1.5rem;
  background: rgba(31, 31, 41, 0.85);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
  max-width: 800px;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer {
  background: rgb(0, 0, 0);
  color: white;
  text-align: left;
  justify-content: space-between;
  padding: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.footer-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
   margin: 0;
}

.social-links {
  margin-left: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.insta-link svg,
.youtube-link svg {
  color: white;
  transition: 0.2s;
}

.insta-link:hover svg {
  color: #f09433;
}

.youtube-link:hover svg {
  color: red;
}
