
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-size:medium;
    color:#FFFFFF;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    line-height:18px;
    background:#000000;
    overflow-y: auto;
    overflow-x: hidden;
}

.full-height {
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: #FFFFFF;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -o-transition: color 0.5s;
    -ms-transition: color 0.5s;
    transition: color 0.5s;
}

a:hover {
    color: #666666;
}

.link_cinza {
    text-decoration: none;
    color: #666666;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -o-transition: color 0.5s;
    -ms-transition: color 0.5s;
    transition: color 0.5s;
}

.link_cinza:hover {
   color: #FFFFFF;
}

.artist_link {
    margin-right: 2vw;
    text-decoration: none;
    word-spacing: -5px;
    color: #FFFFFF;
    font-size: 1.7rem;
    font-weight: 100;
    white-space: nowrap;
    display: inline-block;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -o-transition: color 0.5s;
    -ms-transition: color 0.5s;
    transition: color 0.5s;
}

.artist_link:hover {
    color: #666666;
}

.artist_link_mobile {
    margin-right: 3vw;
    text-decoration: none;
    word-spacing: -5px;
    color: #FFFFFF;
    font-size: medium;
    font-weight: 100;
    white-space: nowrap;
    display: inline-block;
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -o-transition: color 1s;
    -ms-transition: color 1s;
    transition: color 1s;
}

.artist_link_mobile:hover {
    color: #666666;
}

.artist_link_sub {
    text-decoration: none;
    color: #666666;
    font-size: 1.3rem;
    font-weight: 100;
    margin-right: 20px;
    white-space: nowrap;
    line-height: 1.5;
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -o-transition: color 1s;
    -ms-transition: color 1s;
    transition: color 1s;
}

.artist_link_sub:hover {
    color: #FFFFFF;
}

.artist_link_sub_mobile {
    text-decoration: none;
    color: #666666;
    font-size: medium;
    font-weight: 400;
    margin-right: 15px;
    line-height: 1.5;
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -o-transition: color 1s;
    -ms-transition: color 1s;
    transition: color 1s;
}

.artist_link_sub_mobile:hover {
    color: #FFFFFF;
}


.img_fade {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    cursor: pointer;
    transition: .6s ease-out;
}

.img_fade:hover {
    opacity: .6;
    -moz-opacity: .6;
    filter: alpha(opacity=60);
    cursor: pointer;
}

.fade-zoom {
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0.5);
    animation: fadeZoom 5s forwards;
}

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-rodape {
    0% {
        opacity: 0.5;
        -moz-opacity: 0.5;
        filter: alpha(opacity=50);
    }

    70% {
        opacity: 1;
        -moz-opacity: 1;
        filter: alpha(opacity=100);
    }

    100% {
        opacity: 0.5;
        -moz-opacity: 0.5;
        filter: alpha(opacity=50);
    }
}