@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,400;8..144,500;8..144,700&family=Roboto+Mono&family=Roboto+Slab:wght@700&display=swap');

h1 {

    margin-bottom: 2%;

    font-size: 32px;
    font-weight: bold;
    font-family: 'Roboto Slab', sans-serif;
}

h2{
    margin-bottom: 2%;
    margin-top: 2%;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Roboto Slab', sans-serif;
}

.paragraph {

    text-align: justify;
    font-family: 'Roboto Flex', sans-serif;
    margin-bottom: 4%;
    margin-top: 2%;
    line-height: 20px;
    width: 100%;
}

.p-code{
    text-align: justify;
    font-family: 'Roboto Flex', sans-serif;
    margin-bottom: 2%;
    margin-top: 2%;
    line-height: 25px;
    width: 100%;
}

.p-code1{
    text-align: justify;
    font-family: 'Roboto Flex', sans-serif;
    margin-bottom: 2%;
    margin-top: -2%;
    line-height: 25px;
    width: 100%;
}

.code {

    margin-bottom: 2%;

    padding: 1% 0% 1% 1%;
    width: 99%;

    border: 1px solid #808080;
    border-radius: 4px;

    font-family: 'Roboto Mono', monospace;

    background-color: #F7F5F2;
    color: #808080;
}

.code-h{
    padding: 1% 0% 1% 1%;
    width: 99%;

    border: 1px solid #808080;
    border-width: 0.5px 0.5px 0px 0.5px;;
    border-radius: 4px 4px 0px 0px;

    font-family: 'Roboto Mono', monospace;

    background-color: #53BEA6;
    color: black;
}

.code-complete{
    margin-bottom: 2%;

    padding: 1% 0% 1% 1%;
    width: 99%;

    border: 1px solid #808080;
    border-width: 0px 0.5px 0.5px 0.5px;
    border-radius: 0px 0px 4px 4px;

    font-family: 'Roboto Mono', monospace;

    background-color: #F7F5F2;
    color: #808080;
}

@media (max-width: 800px){
    h1{
        font-size: 24px;
    }

    h2{
        font-size: 22px;
    }

    .paragraph{
        font-size: 16px;
    }
}