/* ============================================================================================== 
SED Innovations
https://sed.am
https://mkrtchyan.ga
================================================================================================= */
* {
    margin: 0;
    padding: 0;
}

/* fundo */
@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}
@-moz-keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}
.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.stars {
    background: #000 url(imagens/stars.png) repeat top center;
    z-index: 0;
}
.twinkling{
    background: transparent url(imagens/twinkling.png) repeat top center;
    z-index: 1;
    -moz-animation: move-twink-back 200s linear infinite;
    -ms-animation: move-twink-back 200s linear infinite;
    -o-animation: move-twink-back 200s linear infinite;
    -webkit-animation: move-twink-back 200s linear infinite;
    animation: move-twink-back 200s linear infinite;
}
/* fundo */

#social {
    position: fixed;
    z-index: 1001;
    right: 1%;
    padding-right: 15px;
    padding-top: 15px;
}

#social img {    
    margin-left: 10px;
}

#social a {
    cursor: pointer;
}

#nomebanda, #menu {
    position: fixed;   
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    color: white;
}

#nomebanda {
    padding-left: 30px;
    align-items: center;
    justify-content: space-around;
    font-family: 'Dancing Script', cursive;
    transform: rotate(-10deg);
    font-size: 5.5rem;
}

#menu {
    right: 1%;
    padding-right: 15px;
    justify-content: center;
    text-align: right;
}

#menu p {
    font-family: monospace;
}

#menu button {
    display: block;
    border: none;
    background: none;
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 3rem;
    font-weight: 700;
    text-align: right;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-decoration: none;
    cursor: pointer;
    font-family: monospace;
    outline: none;
    margin: 5px 0 20px 0;
}

#menu button:hover {
    font-size: 3.2rem;
}

#capa {
    position: fixed;
    z-index: 1;
    text-align: center;
    width: 100%;
}

#copyright, #copyright2 {
    position: fixed;
    z-index: 1000;
    right: 1%;
    padding-right: 15px;
    padding-bottom: 15px;
    bottom: 0;
    color: white;
    font-family: monospace;
    font-size: 1.3rem;
}

#copyright2 {
    display: none;
}

/* RESPONSIVO */
@media screen and (max-width: 1200px) {
    #nomebanda {
        font-size: 5rem;
    }
}

@media screen and (max-width: 1160px) {
    #nomebanda {
        justify-content: unset;
        top: 15px;
        left: 50px;
    }
    #menu {
        justify-content: unset;
        top: 70px;
    }
    #menu button {
        font-size: 2.5rem;
    }
    #menu button:hover {
        font-size: 2.7rem;
    }
}

@media screen and (max-width: 1000px) {
    #nomebanda {
        font-size: 4rem;
    }
    #menu {
        top: 80px;
    }
    #menu button {
        font-size: 2.3rem;
    }
    #menu button:hover {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 850px) {
    #nomebanda {
        font-size: 3.5rem;
        padding-left: 20px;
    }
}

@media screen and (max-width: 750px) {
    #nomebanda {
        font-size: 3rem;
        padding-left: 10px;
    }
    #menu button {
        font-size: 2.1rem;
    }
    #menu button:hover {
        font-size: 2.3rem;
    }
}

@media screen and (max-width: 650px) {
    #capa {
        top: 150px;
    }
    #capa img {
        width: 100%;
    }
    #menu button {
        font-size: 1.8rem;
    }
    #menu button:hover {
        font-size: 2rem;
    }
}

@media screen and (max-width: 500px) {
    #capa {
        top: 200px;
        right: 8%;
    }
    #nomebanda {
        padding-left: 30px;
    }
    #menu {
        padding-right: 5px;
        top: 130px;
    }
    #menu button, #menu button:hover {
        font-size: 1.6rem;
    }
    #copyright {
        display: none;
    }
    #copyright2 {
        display: block;
        text-align: right;
        padding-bottom: 20px;
    }
    #social {
        padding-top: 25px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 400px) {
    #nomebanda {
        padding-left: 20px;
        top: 5px;
    }
    #menu {
        top: 110px;
    }
    #copyright2 {
        padding-right: 5px;
        padding-bottom: 5px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 320px) {
    #capa {
        right: 10%;
    }
    #nomebanda {
        font-size: 2.5rem;
        padding-left: 5px;
    }
    #menu button, #menu button:hover {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 600px) and (min-height: 800px) {
    #nomebanda {
        font-size: 4.5rem;
        padding-left: 70px;
    }
    #capa {
        top: 50px;
    }
    #menu {
        top: 50px;
    }
    #menu button, #menu button:hover {
        font-size: 2.5rem;
    }
}

/* https://cssminifier.com/ */