@import url('./layout.css');

.jumbotron {
    background: url('../img/food.jpeg') no-repeat top center fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jumbotron article {
    background-color: rgba(0,0,0, 0.4);
    padding: 15rem;
    border-radius: 2rem;
    color: #fff;
}

.jumbotron__title {
    font-size: 4rem;
    margin: 0;
    letter-spacing: 0.1rem;
    text-shadow: 2px 2px 1px rgba(0,0,0, 0.5);
}

.jumbotron__quote {
    font-size: 3.5rem;
    font-style: italic;
    letter-spacing: 0.2rem;
    margin: 0;
    text-shadow: 2px 2px 1px rgba(0,0,0, 0.5);
}


/* small devices/mobile portrait mode */
@media (max-width: 990px) {
    .jumbotron article {
        padding: 2rem;
        color: #fff;
        margin: 0 2rem;
        text-align: center;
    }
    .jumbotron__title {
        font-size: 2.4rem;
    }
    .jumbotron__quote {
        font-size: 2rem;
    }
}
