@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes fade-in  {
    0% { opacity: 0; }
    100% { opacity: 1;}
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(0, 0, 0)
}

.bg {
    position: fixed;
    inset: 0;
    background-image: url(media/image1.png);
    background-size: cover;
    z-index: -1;
    background-position: center;
    animation: fade-in 1s ease-out forwards;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color:rgba(0, 0, 0, 0.224);
    background-image: url(media/aero.png);
    background-position: center;
    box-shadow: 0 0px 30px rgb(0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.29);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    user-select: none;
    z-index: 100;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

@keyframes pulse-glow-whatever {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
}

.logo {
    color: rgb(255, 255, 255);
    font-size: 1.7rem;
    font-family: 'Raleway';
    animation: pulse-glow-whatever 3s ease-in-out infinite;
    cursor: normal;
}

.sound-button {
    padding: 0.7rem 1.4rem;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 1.0);
    font-family: 'Raleway';
    font-size: 1.0rem;
    cursor: pointer;
}

.music-control {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 1.0);
    overflow: hidden;
    background-color: transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding-right: 0.8rem;
    padding-left: 0.8rem;
}

.volume-slider {
    width: 0;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.3s ease;
}

.volume-slider.visible {
    width: 80px;
    opacity: 1;
}

.discord-button {
    padding: 0.7rem 2.0rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 1.0);
    background: none;
    color: rgba(255, 255, 255, 1.0);
    font-family: 'Raleway';
    font-size: 1.0rem;
    text-decoration: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.1s ease-in;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.title h1 {
    color: white;
    font-family: 'Raleway';
    font-size: 2rem;
    animation: fade-slide 1s ease-in-out forwards;
    text-align: center;
}

@keyframes fade-slide {
    0% { transform:translateY(30px); opacity: 0; }
    100% { transform:translateY(0px); opacity: 1; }
}

.subtitle {
    color: rgb(255, 255, 255);
    font-family: 'Raleway';
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0;
    animation: fade-slide 1s ease-out forwards;
    animation-delay: 1s;
    text-align: center;
}

.subtitle2 {
    color: rgb(255, 255, 255);
    font-family: 'Raleway';
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0;
    animation: fade-slide 1s ease-out forwards;
    animation-delay: 4.0s;
    text-align: center;

}

.details {
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.details p {
    color: rgba(255, 255, 255, 1);
    font-family: 'Raleway';
    font-size: 1.1rem;
    max-width: 600px;
    text-align: center;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Raleway';
    font-size: 0.85rem;
}