/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    text-decoration: none;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'IM Fell English', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    text-decoration: none;
}

/* Header */
.header {
    background-color: #333;
    padding: 0 8rem;
    width: 100%;
    height: 7rem;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    font-size: 2.6rem;
}

.nav__link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 1.5rem;
}

.over {
    padding: 8rem;
    height: 80rem;
    border-bottom: 0.5rem solid #333;
}