.home-container h1 {
    /* font-size: 120%; */
    font-weight: bold;
    letter-spacing: 0.05rem;
    word-spacing: 0.2rem;
}

.home-container section {
    color: #3d4853;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-container .notes {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 15px 15px 15px;
    border-radius: 20px;
    /* border: 1px solid yellow; */
    border: 1px solid silver;
    background-color: rgba(249, 255, 51, 0.45);
}

.home-container .tracking-sample {
    border-bottom: 1px solid silver;
    padding: 2rem 0;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 25% 75%;
    justify-items: center;
    align-items: center;
}

.home-container .tracking-sample img {
    width: 90%;
}

.home-container .tracking-sample .text {
    justify-self: left;
    margin-left: 10%;
    color: #3d4853;
}

.home-container .tracking-sample .text li {
    margin-bottom: 1em;
    font-size: 120%;
}

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* subtract height of fixed navbar */
    overflow-x: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::before {
    z-index: -10;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background: url(img/hero001.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* filter: brightness(99%); */
    opacity: 20%;
}

.hero-content {
    position: relative;
}
