@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


:root{
    --grid-color-one: rgb(0, 0, 0);
    --grid-color-two: rgb(10, 10, 10);
    --grid-size: 100px 100px;
    --grid-speed: 300s;

}

@keyframes scroll {
    100%{
        background-position: 500% -1000%;
    }
}

html {
  scrollbar-color: #0f83ff black;
  scrollbar-width: thin;
}  

body{
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;

    background-size: var(--grid-size);
    animation: scroll var(--grid-speed) linear infinite;
    background-image: repeating-conic-gradient(
      var(--grid-color-two) 0% 25%, 
      var(--grid-color-one) 0% 50%
    );
    overflow-y: visible; /* disable vertical scrolling */
    overflow-x: hidden; /* disable horizontal scroll */

    border-color: #0f83ff;
    border-style: solid;
    border-left-width: 0.6em;
    border-right-width: 0.6em;
    border-top-width: 0;
    border-bottom-width: 0;

    scrollbar-width: none;
}

.container {
    display: flex;
    width: 50%;
    padding: 1em 0 2em 0;
    justify-content: center; 
    align-items: stretch; 
    flex-direction: column; 
    flex-wrap: nowrap; 
    align-content: stretch;
    min-height: 100vh;
    font-size: 1em;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #151515;
}

main{
    color: white;
    font-family: 'Montserrat';
    text-align: left;
}

/*HEADER*/

header{
    padding:0;
    font-size: 0.5em;
    margin: 0;
    width: auto;
    text-align: center;
    display: inline-block;
}

header h3{
    font-size-adjust: 1.2;
    margin: 1em 0;
    padding: 0.6em 0;
    text-align: center;
    font-style: normal;
}

header ul {
    /*border-radius: 10em;*/
    background: #0f83ff;
    padding:0;
    text-align: center;
    font-family: 'Bebas Neue';
    font-size:1.2rem;
}

header li {
  display: inline-block;
  margin: 0;
  padding: 0.1rem 0.8rem 0 0.8rem;
}

header li a {
  color: white;
  text-decoration: none;
}

header li a:hover {
  text-decoration: underline;
}

/*Tilte and sub information style*/

#title{
    margin: 0 0 2em 0;
    font-size:1.5em;
}

#title h1{
    margin: 0.5rem 0 0.5rem 0;
}

#title p{
    font-size: 1.2rem;
    margin: 0;
    padding: 0.3rem 0.8rem 0 0.8rem;
    /*border-radius: 10em;*/
    width: auto;
    background: #0f83ff;
    text-align: left;
    
    display: inline-block;
}

#title a {
    text-decoration:none;
    color: white;
}

#title a:hover {
    text-decoration: underline;
}

#post-date,
#post-tags{
    font-family: 'Bebas Neue';
}

/*Footer*/

.signature{
    font-family:'Bebas Neue';
    color:#white;
    text-align:center;
    position:relative;
    font-size:1em;
}

.signature a {
    color:#378af2;
    text-decoration:none;
}

.signature a:hover{
    text-decoration:underline;
}


img{
    margin:0 10px 0 10px;
    padding:0;
    border:2px;
    border-style: solid;
}

#blog-logo img{
        margin:-5px;
        border-width: 0px;
        border-color: #ffffff00;
        filter: drop-shadow(0px 0px 0px #ffffff00);
}

h1{
    font-family: 'Montserrat';
    text-align: left;
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: 900;
    color: #ffffff;
}

h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    line-height: 0.6em;
}
