*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(47, 47, 56);
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

#avatar img{
    width: 100%;
}

#avatar:hover{
    animation: glow 1500ms ease-in-out infinite alternate;
    cursor: crosshair;
}

@keyframes glow {

    0%{
        box-shadow: 0 0 8px rgba(0, 0, 0 , 0.01);
    }

    100%{
        box-shadow: 0 0 20px rgba(255, 255, 255 , 1);
    }
}




.strike{

}

#h2{
    text-transform: uppercase;
}

#links{
    position: absolute;
    width: 50vw;

    top: 30vh;
    left: 25vw; 
    background-color: rgba(0, 0, 0 , 0.09);
    border: 1px solid rgba(0, 0, 0 , 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0 , 0.2);
    border-radius: 30px;
}

#links ol{
    list-style: none;
    margin: auto;
    text-align: center;
    padding: 30px;
}

#links ol li{
    margin: 5px 0 15px 0;
    padding: auto;

}

a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    
}

a:hover{
    color: rgb(255, 255, 181);
    text-shadow: 0 0 16px rgba(255,255,0, 1);
}




#rodape{
    position: fixed;
    bottom: 15vh;
    right: -4vh;
    padding: 4px;
    
    background-color: rgb(181, 181, 181);
    color:rgba(0, 0, 0, 0.9);
    
    font-style: italic;
    transform: rotate(-270deg);
    font-size: 0.5em;
}

@media screen and (min-width: 699px) {
    #avatar{
        position: fixed;
        top: 2%;
        left: 10%;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid rgb(0, 0, 0);
        object-fit: cover;
        overflow: hidden;
    }
}

@media only screen and (max-width: 700px) {
    #avatar{
        position: fixed;
        top: 2%;
        left: 50%;
        width: 160px;
        height: 160px;
        margin: 0 0 0 -80px;
        border-radius: 50%;
        border: 1px solid rgb(0, 0, 0);
        object-fit: cover;
        overflow: hidden;
        z-index: 30;
    }
  }


