:root
{
    --tamanhoHeader: 100px;
    --corBackgroundPrincipal: #282828;
    --corDefaultTexto: #FFFFFF;
    --corSelectedLinkHeader: #FD344B;
}
body
{
    background:url(Imagens/illustration_cover.png);
    background-size: cover;
    -moz-background-size:cover;
    background-repeat:no-repeat;
    margin: 0;
    color: var(--corDefaultTexto);
    font-family: aMinhaFonte;
}
.selected
{
    font-size: 3rem !important;
    color: var(--corSelectedLinkHeader) !important;
    text-shadow: 0px 0px 15px var(--corSelectedLinkHeader);
}
header
{
    position: relative;
    background-color: var(--corBackgroundPrincipal);
    height: var(--tamanhoHeader);
    opacity: .85;
    animation: animacaoInicialHeader 1s ease-in-out;
}
@keyframes animacaoInicialHeader
{
    from
    {
        top: -100%;
    }
    to
    {
        top: 0;
    }
}
@keyframes animacaoInicialFooter
{
    from
    {
        left: 100%;
    }
    to
    {
        left: 0;
    }
}
@font-face{
    font-family: aMinhaFonte;
    src: url(Fontes/Ubuntu-Regular.ttf);
}
.contentor-links
{
    display: flex;
    margin: 0;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    height: var(--tamanhoHeader);
}
.contentor-links li a{
    margin-left: 20px;
    transition: all .2s ease-in-out;
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--corDefaultTexto);
}
.contentor-links li a:active{
    text-shadow: 0px 0px 15px chocolate;
}
.contentor-links li a:hover
{
    font-size: 3rem;
    text-shadow: 0px 0px 15px var(--corDefaultTexto);
}
footer{
    height: 50px;
    background-color: var(--corBackgroundPrincipal);
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    animation: animacaoInicialFooter 1s ease-in-out;
}
footer p{
    text-shadow: 0px 0px 2px var(--corDefaultTexto);
}
main{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: flex-end;
}
.janela-centrada{
    background-color: var(--corBackgroundPrincipal);
    opacity: .85;
    height: 100%;
    width: 50%;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 3px var(--corBackgroundPrincipal);
}
.janela-centrada h1{
    text-align: center;
}
.texto-linguagem
{
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.centrar-imagem
{
    display: flex;
    justify-content: center;
}

.centrar-imagem a{
    margin-left: 10px;
    transition: all .3s ease-in-out;
}
.centrar-imagem a:hover
{
    transform: scale(1.5);
}
span{
    text-shadow: 0px 0px 15px var(--corDefaultTexto);
    font-size: 1.5rem;
}
footer a
{
    text-shadow: 0px 0px 2px var(--corDefaultTexto);
    text-decoration: none;
    color: inherit;
    float: left;
    position: relative;
    top: 30%;
    transition: all .2s ease-in-out;
}
footer a:hover
{
    font-size: 1.15rem;
    text-shadow: 0px 0px 10px var(--corDefaultTexto);
    text-decoration: underline;
}
td a, .corDefault
{
    color: inherit;
}

