body {
    background: rgb(0, 0, 0);
    text-align: center;

    margin: 0;
}

@font-face {
    font-family: "buran";
    src: url(fonts/buran.ttf);
}
@font-face {
    font-family: "clean";
    src: url(fonts/georgiab.ttf);
}
.container {
    background: #c0d4ff;
    width: 600px;
    margin: 40px auto;
    padding: 30px;

    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 0 20px rgb(176, 208, 255);
    text-align: center;
}
.containerp {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgb(129, 0, 0);
    width: 180vh;
    margin: 65px auto;
    padding: 20px;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0 0 20px rgb(126, 70, 70);
}
.banner {
    width: min(1800px, 50%);
}
.containerp a {
    font-size: 38px;
    font-weight: bolder;
    color: rgb(255, 255, 255);
    text-decoration: none;

    -webkit-text-stroke: 2px black;
    text-shadow: 0 0 6px rgb(0, 0, 0);
}

.containerp a.active {
    padding: 5px 10px;
    color: rgb(255, 0, 0);
    background-color: rgb(0, 0, 0);
}

.nav-right {
    display: flex;
    transform:translateX(-100px);
    font-family: "buran";

    gap: 140px;
}

.nav-left {
    display: flex;
    transform:translateX(100px);
    font-family: "buran";

    gap:140px;
}

.navbar {
    position: absolute;
    bottom: 45px;     
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 300px;

    font-size: 38px;
    font-weight: bolder;
   -webkit-text-stroke: 2px black;
    color: #d0d0d0;
    text-shadow: 0 0 6px #d0d0d0;
}

.mobile-nav {
    display: none;
}

.mobile-nav a.active {
    color: rgb(255, 0, 0);
     padding: 5px 10px;
    background-color: rgb(0, 0, 0);
}

body {
    opacity: 1;
    transition: opacity 0.6s ease;
}

body.fade-out {
    opacity: 0;
}

#status {
    margin-top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: rgb(129, 128, 194);
    text-shadow:
        0 0 5px rgb(72, 55, 99),
        2px 2px 2px black;
    letter-spacing: 2px;
}
#warning {
    font-size: 30px;
    font-family: "buran";
    letter-spacing: 6px;
    color: rgb(200, 220, 255);
   -webkit-text-stroke: 1px black;
}
#warning2 {
    font-size: 22px;
    font-weight: bolder;
    color: rgb(129, 0, 0);
    font-family: "clean";
}
.header {
    position:relative;
    text-align: center;
    font-size: 50px;
    font-weight: bolder;
    font-family: "clean";
   -webkit-text-stroke: 1px black;
    color: blue;
    z-index: 2;
}

#main1 {
    margin: top 40px;
    width: 65%;
    height:auto;
    margin-left: auto;
    margin-right:auto;
}
.albums {
    width: min(600px, 95%);
    margin: 40px auto;
    padding: 20px;

    background: url(/image/clockwerk.png);
    border: 2px solid rgb(0, 0, 0);
}

.albums a {
    color: #d0d0d0;
    text-decoration: none;
}

.albums a:hover {
    color: rgb(129, 0, 0);
}
.albums2 {
    width: min(600px, 95%);
    margin: 40px auto;
    padding: 20px;

    background: url(image/ZipperheadC.jpg);
    border: 2px solid rgb(0, 0, 0);
}

.albums2 a {
    color: #d0d0d0;
    text-decoration: none;
}

.albums2 a:hover {
    color: rgb(129, 0, 0);
}

.albums3 {
    width: min(600px, 95%);
    margin: 40px auto;
    padding: 20px;

    background: url(image/CD.png);
    border: 2px solid rgb(0, 0, 0);
}

.albums3 a {
    color: #d0d0d0;
    text-decoration: none;
}

.albums3 a:hover {
    color: rgb(129, 0, 0);
}
.alink {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid rgb(129, 0, 0);
    color: white;
    text-decoration: none;
    transform: translate(-30px);
}

#link{
    letter-spacing: 5px;
    font-size: 20px;
}
#link2{
    letter-spacing: 5px;
    font-size: 20px;
}
#link3{
    letter-spacing: 5px;
    font-size: 20px;
}

.advert {
    position: fixed;
    right: 120px;
    top: 560px;
}

.ryu {
    position: fixed;
    left: 120px;
    width: 300px;
    height: 64vh;
    top: 560px;
}

.insta {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(129, 0, 0);
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin-right: 25px;
}
.inlogo {
    width: max(50px, 3%);
    margin-right: 25px;
}
.floatingAd {
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 8px));
    }
}
body {
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.fade-in {
    opacity: 1;
}
.love {
    width: min(1200px, 95%);
}

@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        transform: none;
        gap: 20px;
    }
   
    .containerp {
        display: none;
    }

    .ryu{
        display: none;
    }
    .advert {
        display: none;
    }
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 60px;

        justify-content: space-evenly;
        align-items: center;
        border: 2px solid rgb(0, 0, 0);
        box-shadow: 0 0 20px rgb(126, 70, 70);
        background: rgb(129, 0, 0);
        border-top: 2px solid rgb(0, 0, 0);

        font-family: "buran";
        font-size: 26px;
        font-weight: bolder;
        color: rgb(255, 255, 255);
        text-decoration: none;

        -webkit-text-stroke: 2px black;
        text-shadow: 0 0 6px rgb(0, 0, 0);

        z-index: 1000;
    }

    .mobile-nav a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-family: "buran";
    }

    .banner {
    width: min(1800px, 100%);
}

}