:root {
    --primary: #556B2F;
    --secondary: #FFFFF0;
}

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

h1,
h2 {
    color: var(--primary);
    font-family: 'Raleway', sans-serif;
}

p {
    color: var(--primary);
    padding-top: 10px;
}

.btn {
    border-radius: 5px;
    padding: 8px;
    background-color: var(--secondary);
    color: var(--primary);
}

.bg-image {
    background-image: url("quinoa-salad.jpg");
    filter: blur(2px);
    height: 100vh;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Position text in the middle of the page/image */
.bg-text {
    font-weight: bold;
    border: 3px solid var(--secondary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70%;
    padding: 30px;
    text-align: center;
}

/*.prev-text {
    font-weight: bold;
    border: 3px solid var(--secondary);
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}*/

/*for md screen*/
/*@media screen and (min-width: 480px) {
    .bg-text {
        top: 50%;
    }
    .prev-text {
        top: 60%;
    }
}
/*for lg screen*/
@media screen and (min-width: 768px) {
    .bg-text {
        top: 45%;
    }
}