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

:root {
    --red: rgb(230, 0, 35);
    --red-dark: rgb(197, 3, 32);
    --grey-light: rgb(239, 239, 239);
    --grey: rgb(216, 215, 215);
    --green: green;
    --blue: blue;
    --orange: orange;
    --teal: teal;
 
    font-size: 16px;
}

body {
    min-height: 100vh;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarel sans-serif;
    font-weight: 400;
}

.header {
    height: 5rem;
    width: 100%;
    min-width: 600px;
    padding: 1.5rem;
    /* position: fixed; */
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.header__item {
    display: flex;
    align-items: center;
}

.header__item.logo {
    margin-right: 3rem;
}

.logo-img {
    fill: var(--red);
}

.logo-container {
    margin-right: 0.25rem;
}

.company {
    font-size: 1.25rem;
    color: var(--red);
}

.header__item .nav {
    margin-right: 3rem;
}

.nav__links {
    display: flex;
    list-style: none;
}

.nav__link {
    margin-right: 2rem;
}

.nav__link:last-of-type {
    margin-right: 0;
}

.nav__link a:link,
.nav__link a:visited {
    color: black;
    font-weight: 700;
    text-decoration: none;
}

.nav__link a:hover {
    text-decoration: underline;
}

.btn-container {
    display: flex;
}

.header__item .btn {
    margin-right: 1rem;
}

.header__item .btn:last-of-type {
    margin-right: 0;
}

.btn {
    padding: 0.75rem 1rem;
    display: inline-block;

    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background-color: grey;
    border-radius: 2rem;
}

.btn--primary {
    background-color: var(--red);
    color: white;
    font-weight: 500;
}

.btn--primary:hover {
    background-color: var(--red-dark);
}

.btn--secondary {
    background-color: var(--grey-light);
    color: black;
}

.btn--secondary:hover {
    background-color: var(--grey);
}

.content {
    position: relative;
    height: calc(100vh - 5rem); 
}