
/* https://www.howtogeek.com/get-a-clean-attractive-site-with-lines-of-css/ */

@font-face {
    font-family: 'Fira Code';
    src: url('fonts/FiraCode-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Code';
    src: url('fonts/FiraCode-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
    box-sizing: border-box;
    max-width: 70ch;
    margin: auto;
    font-size: 1.25em;
    color: #333;
    color: #DFFF00;
    line-height: 1.4;
}

* {
    box-sizing: inherit;
}

body {
    background-color: #303030;
    font-family: 'Fira Code' , Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a:link {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.bordered-div {
    border-width: 3px;
    border-style: solid;
    border-color: #ale355; 
    border-radius: 5px; 
    padding: 10px 5px 20px 50px;
    box-sizing: border-box; /* Includes border and padding in dimensions */
}

