body {
    display: flex;
    flex-direction: column;
}    
nav {
    color: var(--gray-50);
    background-color: var(--primary-color);
    height: fit-content;
    padding: 1rem 0rem;
}

nav h1 {
    margin-left: 2rem;
}

nav .links {
    text-align: right;
    margin-right: 2rem;
}

nav a {
    font-size: 1.25rem;
    padding-right: 1.5rem;
    margin-bottom: 1rem
}

.links a:hover {
    color: var(--blue-50);
    font-weight: bolder;
}

.hero-img { 
    max-width: 50%;
    margin-right: 1rem;
   
}

.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
}

.intro-text {
    max-width: 40rem;
    margin: 1rem;
    color: var(--secondary-color);
}

.intro h1 {
    color: var(--primary-color);
}

.get-started {
    margin: 1rem;
    font-size: 1.5rem;
}

.installation {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
 
}

.install-text {
    color: var(--gray-500);
    font-weight: bolder;
}

pre code.hljs {
    display: block;
    overflow-x: auto;
    padding: 1em;
}

.code-snippet {
    font-size: 1rem;
    margin-right: 2rem;
}

footer {
    padding: 2rem;
    background-color: var(--primary-color);
}

footer p{
    color: var(--gray-50);
}

footer a {
    font-size: 1.5rem;
    font-weight: bolder;
}

footer a:hover {
    color: var(--blue-100);
    text-decoration: underline;
}

