@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

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

#home {
    background-color: #000a;
    border-color: #555;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 5px 5px #000a;
    cursor: pointer;
    fill: #fff;
    height: 30px;
    right: 1rem;
    padding: 5px;
    position: fixed;
    bottom: 1rem;
    width: 30px;
    z-index: 99;
}

body {
    background-color: #222;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    padding-bottom: 50px;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
}

.nav {
    background-color: #333;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 300ms ease-in-out;
}

.nav .container {
    display: flex;
    padding-block: 20px;
    place-content: space-between;
    place-items: center;
    transition: all 300ms ease-in-out;
}

.nav ul {
    display: flex;
    list-style-type: none;
    place-content: center;
    place-items: center;
}

.nav a {
    color: #fff;
    padding: 7px 15px;
    text-decoration: none;
    transition: all 300ms ease-in-out;
}

.nav a.current,
.nav a:hover {
    color: #c0392b;
    font-weight: 700;
}

.nav.active {
    background-color: #eee;
    box-shadow: 0 2px 10px #0005;
}

.nav.active .container {
    padding: 5px 0;
}

.nav.active a {
    color: #222;
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1550690142-ad2b506b9ae8?q=80&w=735&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    height: 100vh;
    margin-bottom: 20px;
    place-content: center;
    place-items: center;
    position: relative;
    text-align: center;
    z-index: -2;
}

.hero::before {
    background-color: #0007;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.hero h2 {
    font-size: 46px;
    margin: -20px 0 20px;
}

.hero p {
    font-size: 20px;
    letter-spacing: 1px;
}

.content h3 {
    font-size: 150%;
    margin: 20px 0;
}

.content p {
    color: #aaa;
    line-height: 30px;
    letter-spacing: 1.2px;
}