@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

* {
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    display: none;

}

body {
    background-color: #232323;
}

.nav {
    animation: down 1s;
    display: grid;
    justify-content: center;
    align-content: center;
    gap: 20vw;
    grid-auto-flow: column;
}

@keyframes down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.music {
    padding-top: 30px;
    position: absolute;
    left: 30px;
    display: none;
}

.music button {
    background-color: transparent;
    cursor: pointer;
    border: none;
}

.music img {
    width: 33px;
    padding: 10px;
}

.musicoff {
    padding-top: 30px;
    position: absolute;
    left: 30px;
}

.musicoff button {
    background-color: transparent;
    cursor: pointer;
    border: none;
}

.musicoff img {
    width: 33px;
    padding: 10px;
}

/*----------------------------------------------------------------Active part-----------------------------------------------------------------------------*/


.disc img.active {
    animation-play-state: running;
}



/*----------------------------------------------------------------Active part-----------------------------------------------------------------------------*/


.logo {

    margin-top: -100px;
}

.social {
    position: absolute;
    padding-top: 30px;
    right: 30px;
}

.social ul {
    list-style: none;
    display: flex;

}

.social ul li {
    padding: 10px;
    font-size: 33px;

}

.social ul li a {
    color: white;
    transition: .5s;
}

.social ul li a:hover {
    color: bisque;
}

.links {
    display: grid;
    justify-content: center;
    margin-top: -100px;
    z-index: 1;

}

.links ul {
    display: flex;
    list-style: none;
   
}

.links ul li {
    padding-left: 50px;
    font-size: 33px;

    font-family: 'Righteous', cursive;
    letter-spacing: 5px;
}

.links ul li a {
    color: white;
    text-decoration: none;
    transition: .5s;
}

.links ul li a:hover {
    color: bisque;
}

#store {
    animation: left 1s;
}

@keyframes left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#con {
    animation: right 1s;
}

@keyframes right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact {
    display: grid;
    justify-content: center;
    margin-top: 50px 50px;
    animation: up 1s;
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

form input[type=email],
[type=text] {
    width: 600px;
    min-width: 300px;
    font-size: 20px;
    padding-left: 30px;
    margin-top: 20px;
    height: 60px;
    background-color: transparent;
    border: 5px solid white;
    outline: none;
    color: white;
    font-family: 'Righteous', cursive;
}

form textarea {
    width: 570px;
    height: 300px;
    max-height: 300px;
    min-width: 270px;
    font-size: 20px;
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: transparent;
    border: 5px solid white;
    color: white;
    outline: none;
    resize: none;
    font-family: 'Righteous', cursive;
}

form button {
    float: right;
    background-color: transparent;
    border: 5px solid white;
    width: 150px;
    padding: 10px;
    color: white;
    outline: none;
    margin-top: 10px;
    font-size: 20px;
    transition: .5s;
    font-family: 'Righteous', cursive;
    cursor: pointer;
}

form button:hover {
    color: black;
    background-color: white;
}

.copyright {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 15px;
    font-family: 'Righteous', cursive;
    color: white;
    text-align: center;
    bottom: 20px;
    animation: upc 1s;
}
@keyframes upc {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media only screen and (max-width:640px) {
    .music img {
        width: 10vw;
    }

    .musicoff img {
        width: 10vw;

    }

    .social ul li {
        font-size: 7vw;
    }

    .logo img {
        width: 50vw;
        margin-top: 100px;
    }

    .social {
        width: 20vw;
    }

    .links {
       
        margin-top: -40px;
    }
    .links ul li{
        font-size: 5vw;
        padding-left: 30px;
    }
   .m-center
   {
    display: flex;
    justify-content: center;
   }


    form input[type=email],
[type=text] {
    width: 40vw;
    font-size: 20px;
    padding-left: 30px;
    margin-top: 20px;
    height: 60px;
    background-color: transparent;
    border: 3px solid white;
    outline: none;
    color: white;
    font-family: 'Righteous', cursive;
}

form textarea {
  width: 35vw;
  height: 200px;
    font-size: 20px;
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: transparent;
    border: 3px solid white;
    color: white;
    outline: none;
    resize: none;
    font-family: 'Righteous', cursive;
}

form button {
    float: right;
    background-color: transparent;
    border: 3px solid white;
    width: 30vw;
    padding: 10px;
    color: white;
    outline: none;
    margin-top: 10px;
    font-size: 20px;
    transition: .5s;
    font-family: 'Righteous', cursive;
    cursor: pointer;
}
}