button {
    background-color: goldenrod;
    border: none;
    padding: 13px 15px;
    border-radius: 10px;
    border: 2px solid red;
    transition: .5s;
}
.body-bg-img {
    background-image: url('../Web Designing/images/photorealistic-view-tree-nature-with-branches-trunk.jpg');
    background-size: cover;
}
button:hover {
    background-color: silver;
    color: black;
    border: 2px solid goldenrod;
    box-shadow: 3px 3px 6px black;
    transform: scale(1.1);
}
button a {
    text-decoration: none;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
}
.js-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
h1 {
    text-align: center;
    color: chocolate;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h2, h3, h4 {
    text-align: center;
}

@media screen and (min-width:786px) {
    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .js-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}



}