html,

body {
    font-family: sans-serif;
    margin: 0;
    height: 100%;
}

nav ul {
    list-style: none;
}

p {
    margin-block-start: 0;
    text-indent: 1rem;
}

hr {
    border: 10px lightseagreen;
    border-radius: 5px;
    height: 10px;
    width: 100%;
    margin-left: 0;
    background-color: lightseagreen;
}

#root {
    display: flex;
    height: 100%;
}

.page-content {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    width: 50%;
}

.page-content > img {
    display: flex;
    border-radius: 200px;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

h3:nth-of-type(2) {
    font-style: italic;
}

a[href="/en-US/docs/Glossary/CSS"] {
    color: green;
}

.not-me {
    font-style: bold;
    font-family: cursive;
}

.page-container {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

#main-page {
    flex-grow: 1;
}

.page-title {
    font-family: monospace;
    font-size: 40px;

}


.nav_link {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #8d8d8d;
    font-weight: 500;
}

.nav_link:hover {
    background: lightseagreen;
}

.sidebar {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-right: 2rem;

    border-right: 1px solid lightgray;
}

.sidebar > a {
    margin: 0.1rem 0;
    margin-right: 1rem;
}

.text-box {
    padding-top: 15px;
}

.align-center {
    align-items: center;
}

.socials-container {
    display: flex;
    justify-content: center;
}

.socials-card {
    display: flex;
    align-items: center;

    border: 1px solid lightgray;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin: 1rem;

    text-decoration: none;
    color: unset;
}

.socials-card:hover {
    background-color: lightseagreen;
}

.socials-card > i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}