/*  
    font-size: 16px;
    font-family: "Times New Roman", arial, etc.
    font-weight: normal,bold,bolder,lighter,100-400(normal),500-700(bold),800-900
    font-style: normal,italic
    color: navy;(color of the text)
    background-color: #24244b;
    text-decoration: none,overline,underline,line-through
    text-transform: none,capitalize,lowercase,uppercase
    text-indent: 5%;(espaço antes da primeira linha do parágrafo)
    letter-spacing: 0.5em;
    word-spacing: 2em;
    line-height: 1.5;
    text-align: center,left,right,justify(o texto vai até o fim da página)
    border-style.: solid, dotted, dashed, double, groove, ridge, inset, outset
    properties- border-width, border-top-width, border-right-width, border-bottom-width, border-left-width.
    border-color: color

*/
@font-face{
    font-family: raslani;
    src: url(fontes/raslani_destroyedd_souls/Raslani\ Destroyed\ Souls.ttf);
}
@font-face{
    font-family: venice;
    src: url(fontes/venice_classic/VeniceClassic.ttf);
}
@font-face{
    font-family: SourceSerif4;
    src: url(fontes/Source_Serif_4/SourceSerif4-VariableFont_opsz\,wght.ttf);
}


body{
    background-color: white;
    /*background-image: url("Imagens/bgXadrezPretoDiagonal.png");*/
    background-image: url("Imagens/bgXadrezPretoDiagonal.png");
    background-repeat: repeat;
    
}


/*blocks:*/
header{
    background-image: url(Imagens/LukaSmirkRound5.jpeg);
    background-size: cover;
    background-position: center;
    background-color: #858585;
    display: flex;
    align-items: flex-end;
    /*
    border: 23px solid transparent;
    border-bottom-width: 160px;
    border-image-source: url("Imagens/BordaLaçoQuadrado.png");
    border-image-repeat: round repeat;
    border-image-slice:30 30 200 30;
    background-clip: padding-box;

    margin: 0 11.5px -80.5px 11.5px;
    */
    height: 250px;

    border: 5px solid;
}
main{
    display:block;
    height: 325px;
    
    border-style: solid;

    /*background-color: #EEEFF0;*/
    background-color: white;
}
nav{
    display: block;
    height: 400px;

    border-style: groove;
    border-color: white;
    
    background-color: black;
}
.update_log{
    margin-top: -75px;
    margin-bottom: 50px;
    
}

.updates{
    height: 175px;

    overflow-y: scroll;
    overflow-wrap: break-word;

    border-bottom: solid;

    background-color: transparent;
    background-image: linear-gradient(#5d5a60,#d1d1d1);
}

::-webkit-scrollbar{
    width:8px;
}
::-webkit-scrollbar-track{
    background: black;
}
::-webkit-scrollbar-thumb{
    background: rgba(255, 255, 255, 0.726);
    border-radius:3px;
}
::-webkit-scrollbar-thumb:hover{
    background: white;
    border-radius:0;
}


/*text:*/
header h1{
    margin: 15px;
    margin-bottom:5px; 

    font-size: 50px;
    font-family: raslani;
    letter-spacing: 0.1em;
    color: black;
}
main p{
    margin: 10px 20px;
    font-size: 17px;
}
main p:first-child{
    margin-top: 25px;
}

#interests{
    display: none;
}

.pages_link{
    display:block;
    background-color: #3b3b3d;
    margin: 30px;
    padding: 12px; 

    font-family: venice;
    font-size: 25px;
    
    color: #fefefe;
}

.pages_link:hover{
    rotate: 5deg;

    background-color: #fefefe;
    color: #39383d;
}
a:nth-child(even):hover{
    rotate: -5deg;
}

a:not([href]){
    text-decoration: line-through;
    text-decoration-thickness: 1.1px;
}

.update_log h2{
    color: white;
    background-color: black;
    border: outset black;
    margin:0;
    padding:8px 4px 4px 4px;
}
.updates_log h2 img{
    padding-left: 5px;
}

.update_log section{
    color:white;
    border-bottom: dashed black;
    border-left: groove black;
    border-top: dashed black;
    border-width: 0 0 2px 2px;
    padding: 0px 10px 4px 10px;
}
.update_log section:last-child{
    border-bottom-width:0;
}
.update_log h3{
    color: black;
    margin:0;
}
.update_log p{
    margin:0;  
}

.my_button{
    display:flex;
    margin-bottom:25px;
    height:31px;
    
}
#other_buttons a{
    display:block;
}
#other_buttons{
    flex-wrap:wrap;
    flex-shrink:0;
    overflow-y:scroll;
    overflow-wrap:break-word;
}
.buttons img{
    display:block;
}
.buttons code{
    display:block;
    height:31px;
    overflow-y:scroll;
    overflow-wrap: break-word;
    background-color: gray;
}
.buttons{
    h2{
        color:white;
        padding:1px 8px;
        border: outset black;
        margin:0;
        background-color:black;
    }
    p{
        background-color:white;
        margin:2px;
    }
}
.my_button a:hover{
    rotate:0deg;
}

/*layout:*/
.container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.website-grid{
    display:grid;
    grid-template:
        "header header"
        "main nav"
        "updates myButton"
        /400px 184px;
    grid-gap:50px;
}
header {grid-area: header};
main {grid-area: main};
nav {grid-area: nav};
.update-log{grid-area: updates};
.buttons{grid-area: myButton};

