/* Basic Style */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100..900&family=M+PLUS+1+Code:wght@100..700&family=Nanum+Gothic&display=swap');
/* 
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;

    font-family: "Encode Sans",
    sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings: "wdth" 100;

    font-family: "Nanum Gothic",
    sans-serif;
    font-weight: 400;
    font-style: normal;

    font-family: "M PLUS 1 Code", monospace;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;    
*/

* {
    color: rgb(80, 79, 79);
    font-family: "Nanum Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;


}

h2 {
    font-family: "Encode Sans",
        sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 1.6em;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.2rem;
}

strong {
    font-weight: 600;
}

p {
    font-size: 1.1rem;    
}

p a {
    text-decoration: none;
    font-style: italic;
    color: rgb(103, 146, 77);
}


pre {
    padding: 0.3rem 2rem;
    font-size: initial;
    margin-top: 0.2rem;
    background-color: rgb(113, 62, 170);
    color: white;
}

em {
    font-style: italic;
    color: rgb(116, 117, 115);
}


@media (min-width:768px) {
    pre {
        padding: 0.7rem 3rem;
    }
}

footer {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    background-color: rgb(231, 219, 243);
    font-size: 0.8rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #404040;
}

footer p a {
    font-style: normal;
    font-size: 0.8rem;
}

footer p a:hover {
    color: rgb(46, 45, 43);

}

footer a {
    text-decoration: none;
    color: rgb(194, 109, 123);
    display: block;
}

/* ---------------Id & Classes------------- */
code span.highlight {
    color: white;
    font-family: inherit;
    background-color: blueviolet;
}

section.main-heading {
    background-color: rgb(243, 134, 84);
    padding: 1rem;
    text-align: center;
}

section.main-heading h1 {
    color: white;
}

.button {
    background-color: rgb(243, 134, 84);
    color: white;
    font-size: 1rem;
    border-radius: 0.3rem;
    padding: 0.15rem 0.4rem;
    font-family: "Quicksand", sans-serif;
}