.home-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: var(--color-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: left;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    background-image:
        linear-gradient(to bottom,
            rgba(10, 10, 10, 0.2) 0%,
            rgba(10, 10, 10, 0.2) 50%,
            rgba(10, 10, 10, 0.6) 75%,
            rgba(10, 10, 10, 1) 100%),
        url("/images/home_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--color-light);
    margin: 0;
    min-height: 100vh;
}

body.home header {
    background-color: var(--color-extra-dark);
}

.home-info {
    position: fixed;
    line-height: 1.4;
    bottom: 0rem;
    left: 0rem;
    text-align: left;
    max-width: 100%;
    color: var(--color-light);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.home-info-text {
    padding-bottom: none;
    margin-bottom: none;
}

p {
    font-size: 0.9rem;
}

.btn {
    padding: 0.2rem 0;
    margin-top: 1rem;
    width: 50%;
    background-color: var(--color-extra-dark);
    text-align: center;
    color: var(--color-light);
    border: none;
    font-size: 0.9rem;
    border-radius: var(--std-radius);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: var(--std-hover-transform);
    background-color: var(--color-light);
    color: var(--color-extra-dark);
}

@media (min-width: 768px) {

    .home-info {
        position: absolute;
        text-align: left;
        bottom: 0rem;
        left: 0rem;
        max-width: 30%;
        color: var(--color-light);
        display: flex;
        flex-direction: column;
    }
}
