* {
    font-weight: 400;
    /* text-align: center; */
}

strong {
    font-weight: 600;
}

header {
    padding-bottom: 3rem;
}

header h1 {
    font-size: 3rem;
}

header a {
    display: block;
    padding-top: 1rem;
}

header a::before {
    content: '> ';
    color: var(--accent-green);
    animation: blink 1s step-end infinite;
}

.content {
    max-width: 1200px;
    margin: 5rem auto 0 auto;
    padding: 0 2rem;
}

section {
    border-top: 1px solid var(--grey-secondary);
    padding: 1.5rem 0;
}

h2 {
    margin-bottom: 1.5rem;
}

.content p, .content ul {
    margin: 1rem 0;
}

.content ul {
    padding-left: 2rem;
}

a{
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-green);
}
.footer {
    margin-top : 8rem;
}