/* tags gerais */
body {
    overflow: hidden;
}
a {
    text-decoration: none;
    color: black;
}
a:visited {
    color: black;
    text-decoration: none;
}
::-webkit-scrollbar {
    width: 1px;
}
::-webkit-scrollbar-thumb {
    background: black;
}

/* tags do conteudo principal */
#container{
    position: relative;
}
#videoElement {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    -moz-transform:rotateY(180deg); /* Firefox */
    -webkit-transform:rotateY(180deg); /* Safari and Chrome */
    transform: rotateY(180deg);
}
.content {
    position: fixed;
    bottom: 0;
    color: rgb(0, 0, 0);
    color: rgba(0, 0, 0, 0.85);
    width: 100%;
    padding: 0px;
    text-align: center;
    font-family: source-code-pro, monospace;
    font-weight: 100;
    font-style: normal;
    font-size: xx-large;
}
.macho {
    color: blue;
}

.femea {
    color: fuchsia;
}
#painel {
    display: block;
    background-color: whitesmoke;
    height: 70%;
    width: 60%;
    position: absolute;
    top: 15%;
    left: 20%;
    transition: opacity 1.5s ease-in-out;
    overflow-y: auto;
}
#texto {
    margin: 5%;
    text-align: justify;
    font-family: source-code-pro, monospace;
    font-weight: 100;
    font-style: normal;
    font-size: 130%;
    transition: opacity 1.5s ease-in-out;
}
.hidden {
    opacity: 0;
}
#portfolio {
    text-align: center;
    font-family: source-code-pro, monospace;
    font-size: 130%;
}
#portfolio a {
    font-style: normal;
    font-size: 130%;
}
#portfolio a:hover {
    transition: 0.5s ease-in-out;
    background-color: #DCD6F7;
}


/* tags para mobile e telas grandes */
@media only screen and (max-width: 480px) {
    #videoElement {position:fixed; right: -10%; max-height:100%;}
    .content {font-size: large;}
    #texto {
        margin: 10%;
        font-size: 80%;
    }
    #painel {
        height: 80%;
        width: 80%;
        top: 10%;
        left: 10%;
    }
    #portfolio {
        margin-bottom: 8%;
    }
}
@media only screen and (min-width: 1800px) {
    #texto {
        margin-top: 30%;
    }
}