html {
    background-color: #07272a;

}

body {
    margin: 0px;

}

@media screen and (max-width: 480px) {
    .feature-list {
        font-size: 1.5em; /* Adjust the font size as needed */
    }
}

.margined {
    margin: 15px;
}

.overlay {
    opacity: 0.6;
    background-color: black;
}

.parallax {
    background-size: cover;
    background-position: center;
    background-position-y: 0px; /* Add this line */
    background-image: url("img/jumbobackground.png");
    height: 35vh;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Bree Serif', serif;
}

.parallax h1 {
    font-size: 4em;
}

.parallax p {
    font-size: 3em;
}

.grid-item {
    margin: 20px; /* Adjusts the distance between grid items */
    border: 12px solid black; /* Adds a thick black border */
    border-radius: 25px; /* Rounds the edges */
    overflow: hidden; /* Ensures the content respects the border-radius */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    padding: 10px;
}
/* 
@media only screen and (max-width: 755px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
*/

@media only screen and (min-width: 1050px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
} 
