:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #000;
    --light-gray: #f5f5f5;
    --line-color: #e0e0e0;
    --max-width: 900px;
    --paragraph-spacing: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: var(--primary-color);
    background-color: white;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    height: 200vh;
    padding-bottom: 100px !important;
    overflow: scroll;

    padding-bottom: 50px;
}

html {
    height: 100% !important;
}

* {
    text-transform: lowercase;
}

article.layout_1_2 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;

    height: 100% !important;

    padding-bottom: 100px !important;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-color);
    margin: 2rem 0 0.5rem 0;
}

p {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.4;
}

ul {
    margin-bottom: var(--paragraph-spacing);
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

strong {
    color: var(--accent-color);
    font-weight: 500;
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--line-color);
    margin: 3rem 0;
}

#copyright-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.back_home {
    position: fixed;
    top: 20px;
    left: 20px;

    text-decoration: none;
    color: black;

    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    width: 40px;
    height: 40px;

    border-radius: 50%;
}

.back_home .material-symbols-outlined {
    transform: translate(8px, 8px);
}


@media only screen and (max-width: 600px) {
    .layout_1_2 {
        padding: 20px !important;
    }

    .layout_1_2 .left {
        padding: 0 !important;
    }


    h2 {
        font-size: 0.5rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1rem;
    }

    p,
    ul li,
    ul {
        font-size: 0.8rem;
    }

    .back_home {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        top: auto !important;


        box-shadow: 0 0 25px rgba(0, 0, 0, 0.173);
    }
}