*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #1a1a1a;
}

html{
    scroll-behavior: smooth;
}

header{
    margin: auto;
    width: 95vw;
    min-height: 70px;
    max-height: 120px;
}

.title{
    background: #2d2d2d;
    color: white;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 35px;
    border: 2px solid rgb(58, 58, 58);
    margin-top: 20px;
    margin-bottom: 10px;
}

.size-6{
    width: 60px;
    color: lightsteelblue;
}

hr{
    background-color: rgb(78, 78, 78);
    height: 2px;
    border: none;
    margin-bottom: 10px;

}

h2{
    text-decoration: underline;
    text-decoration-color: gray;
    color: #f8f8f2;
    padding: clamp(12px, 1vw, 40px);
    font-weight: bold;
    background-color: #353535;
    width: fit-content;
    padding: 1px;
    border: 2px solid rgb(58, 58, 58);
    -moz-text-decoration-color: gray;
}

div, pre{
    border: 2px solid rgb(58, 58, 58);
    margin: auto;
    width: 90%;
    font-family: monospace;
    background-color: #2d2d2d;
    color: #f8f8f2;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    font-size: 1rem;
}

pre{
    margin-top: 5px;
    margin-bottom: 5px;
    overflow-x: auto;
}

div{
    margin-top: 10px;
    margin-bottom: 10px;;
}

.text{
    color: gray;
}

.attribute{
    color: rgb(89, 227, 245);
    text-shadow:  rgb(89, 227, 245);
}

.attribute2{
    color: rgb(250, 189, 110);
    text-shadow: rgb(250, 189, 110);
}

.keyword{
    color: rgb(89, 175, 245);
    text-shadow: rgb(89, 89, 245);
}

.note{
    color: rgb(240, 240, 161);
}

footer {
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    background: #111;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid #333;
}
footer p {
    margin: 5px 0;
}

a {
    color: #f8f8f2;
    text-decoration: none;
}