:root {
    --background:#1e1e2e;
    --primary: #11111b;
    --secondary: #181825;
    --text-color: #cdd6f4; 
    --subtext-0: #a6adc8;
    --subtext-1: #bac2de;
    --link-color: #89b4fa; 
    --h1-size: 2rem; 
    --h2-size: 1.75rem; 
    --h3-size: 1.5rm; 
    --h4-size: 1.4rem; 
    --p-size: 1.3rem;
}
@font-face {
    font-family: "Rubik";
    src: url(/fonts/Rubik-Regular.ttf);
}
body{
    display: flex;
    flex-direction: column;
    min-height: 16rem;
    max-width: 62.5rem;
    margin: 0 auto;
    background-color: var(--background);
    font-family: "Rubik";

}



pre {
    background: var(--primary);
    clear: both;
    color: var(--text-color);
    font-family: 'Inconsolata', monospace;
    hyphens: none;
    line-height: 2rem;
    min-width: 100%;
    position: relative;
    word-break: normal;
    border: 1px solid #787878;
    border-radius: 10px;
  }
  
  pre code {
    direction: ltr;
    text-align: left;
    display: block;
    font-family: 'Inconsolata', monospace;
    padding:1rem;
    white-space: pre-wrap;
  }
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    background-color: var(--secondary);
}
.navbar a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0 10px 10px 10px;
    margin-right: 20px;
    font-size: var(--p-size);
    transition: color 0.5s ease;
}
.navbar a:hover{
color: var(--link-color);
}

.border{
    background-image: url(/images/borders.jpg);
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    display: block;
    height: 2rem;
}

.banner {
    width: 100%;
    height: 100%;
    }


.content{
    padding: 20px 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
}
.content, .content * {
    color: var(--text-color);
    font-size: var(--p-size);
    font-weight: normal;
}
.content h1{
    font-size: var(--h1-size);
    font-weight: 600;
    align-self: center;
}

.content h2 {
    font-size: var(--h2-size);
    font-weight: 600;
}

.content h3 {
    font-size: var(--h3-size);
    font-weight: 600;
}

.content h4 {
    font-size: var(--h4-size);
    font-weight: 600;
}

.content p {
    font-size: var(--p-size);
    color: var(--subtext-0);
}

.content a{
    text-decoration: none;
    color: var(--link-color);
}
.content b {
    font-weight:bolder;
  }
ol, ul {
    font-size: 1.2rem; 
    margin-left: 0px; 
    margin-top: 20px; 
    margin-bottom: 20px; 
    width: 100%;
    box-sizing: border-box;
}

li {
    margin-bottom: 10px; 
}

@media (max-width:62.5rem) {
    .box{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .photo{
        width: 100%;
        height: fit-content;
        order: 1;
        
    }
    .text{
        width: 100%;
        order: 2;
    }

}

@media (min-width:62.5rem) {
    .box{
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    .photo{
        width: 50%;
        height: fit-content;
        order: 2;
        
    }
    .text{
        width: 50%;
        order: 1;
    }
    
}
.box img {
    width: 100%;
}

footer {
    text-align: center;
    padding: 3px;
    font-size: var(--h4-size);
}
footer a {
    text-decoration: none;
    color: var(--link-color);
}