/* * {
    border: 1px solid red !important;
} */

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--step-0);

    color: hsl(0, 0%, 15%);

    height: 100vh;

    background: linear-gradient(160deg, hsl(0, 0%, 100%),#666666);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

em {
    font-weight: bold;
}

h1 {
     font-size: var(--step-5);
     font-weight: bold;
}

h2 {
    font-size: var(--step-4);
    font-weight: bold;
    margin-block: 24px;
    margin-inline: 12px;
}

h3 {
    font-size: var(--step-3);
    margin-block: 24px;
    margin-inline: 12px;
}

h4 {
    font-size: var(--step-3);
}

h5 {
    font-size: var(--step-2);
}

h6 {
    font-size: var(--step-1);
}

.body-link{
    color: blue;
}

p{
    margin: 12px;
    font-size: var(--step-0);
}

a:hover {
    text-decoration: underline;
}


.homepage-name {
    text-align: end;
    color: hsl(221, 100%, 18%)
}

.content {
    width: 100%;
    max-width: 700px;
    justify-self: center;
}

/* ---------- Header ---------- */

.desktop {
    display: none;
}

.header {
    width: 100%;
    position: sticky;
    top: 0;

    display: inline-flex;
    align-content: center;
    justify-content: center;

    background-color: hsl(221, 100%, 18%);
}

.header a {
    color: white;
}

.desktop-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 8px;
    flex-direction: column;
}

.desktop-nav li {
    margin: 16px;
}

@media screen and (min-width: 720px) {
    .desktop {
        display: inline-flex;
        flex-direction: row;
    }

    .header {
        height: 64px;
    }
}

/* ---------- footer ---------- */

footer {
    color:hsl(0, 0%, 25%);
    
    width: 90%;
    max-width: 1200px;
    margin: 12px auto;
    display: flex;
    justify-content: space-between;
    
    line-height: 1.5;
}

footer .terms {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 24px;
}
