@font-face {
    font-family: 'TeXGyreHeros';
    src: url('../fonts/texgyreheros/texgyreheros-regular.otf');
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

*::selection {
    background-color: darkolivegreen;
    color: #e6e6e6;
}

html, body {
    background-color: #d9d9d9;
    font-size: 29px;
    padding: 0;
    margin: 0;
    font-family: 'TexGyreHeros', 'sans-serif';    
}

@media (max-width: 768px) {
    html, body {
        font-size: 18px;
    }
}

h1, p, ul, li, a {
    font-size: inherit;
    font-style: unset;
    font-weight: unset;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: black;
    letter-spacing: -0.02em;
}

ul, ul li {
    list-style: none;
}

ul {
    padding-top: 1em;
}

main, section {
    padding: 0;
    margin: 0;
}

main {
    min-height: 100vh;
    padding: 24px;
}

h1 {
    color: #9d9d9d;
}

a {
    border-bottom: 0.1em solid black;
}

@media (hover: hover) {
    a:hover {
        color: darkolivegreen;
        border-bottom: 0.1em solid darkolivegreen;
        cursor: pointer;
    }
}
    
main {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    max-width: 1200px;
}

section.bulletPointsSection {
    display: flex;
    flex-direction: row;
    width: 100%;
}

@media (max-width: 768px) {
    section.bulletPointsSection {
        flex-direction: column;
    }    
}

.bulletPointsSectionAbout {
    flex-grow: 1;
}

.bulletPointsSectionAbout ul {
    padding-right: 24px;
}

section.paragraphSection {
    margin-top: auto;
    width: 100%;
    padding-top: 24px;
}

@media (max-width: 768px) {
    .bulletPointsSectionSocialMedia {
        padding-top: 64px;
    }
}

section.paragraphSection p {
    text-indent: 4em;
}

section.paragraphSection p:nth-child(1) {
    text-indent: 0;
}