html {
    scroll-behavior: smooth;
}
* {
    border: none;
    outline: none;
   
}
body { 
    filter: blur(10px);
    color: rgb(255, 218, 173);
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
    background-image: url("https://media.istockphoto.com/id/475668157/photo/brown-wood-planks-texture-background-wallpaper.jpg?s=612x612&w=0&k=20&c=YwlzzELr1v-bA9C-8wZsc0Cm1lNIoBx2SIB2sYXk5oY=");
    font-size: 150%;
    width: 100%;
    height: 100%;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.720);
    z-index: -1;
}
h1 {
    color: rgb(255, 129, 39);
    font-weight: bolder;
    margin: 0;
}
h2 {
    color: rgb(255, 129, 39);
    font-weight: bolder;
    margin: 0;
    font-size: 20px;
}
h3 { 
    text-align: center;
    color: rgb(255, 129, 39);
    font-size: 1.7em;
    font-weight: bolder;
    margin: 0;
}
.navbar {
    margin: 0%;
    
}
nav {
    position: sticky;
    top: 0;
    background-color: #333;
    padding: 10px;
    z-index: 1000;
    margin: 0;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.nav-item {
    list-style-type: none;
    padding: 0 0 0 20px;
    margin: 0;
}
p {
    text-align: center;
    border-bottom: 1px solid rgb(255, 129, 39);
}
nav ul li a {
    text-decoration: none;
    color: rgb(255, 218, 169) !important;
    font-size: 1.3em;
    font-weight: 600;
}

.jumbotron {
    font-weight: 900;
    background-color: #1b0c0494;
    color: rgb(255, 218, 169);
    padding: 10px;
    margin: 0;
    text-align: center;
    font-size: 1.5em;
}
.btn {
    background-color: rgb(255, 129, 39);
    color: rgb(255, 218, 169);
    font-size: 1.3em;
    font-weight: 600;
    padding: 10px;
    border-radius: 0.5em;
    margin: 10px;
    cursor: pointer;
    width: 30%;
    font-weight: 900;
    font-size: 1.5em;
}
.btn:hover {
    background-color: rgb(255, 218, 169);
    color: rgb(255, 129, 39);
    transition: 300ms;
}
.container{
    width: 100vw;
    height: 100%;
}
nav a:hover {
    font-size: 140%;
    transition: 300ms;
}

footer 
{
    bottom: 0;
    background-color: #333;
    padding: 10px;
    z-index: 1000;
}
footer p {
    text-align: center;
    color: rgb(255, 218, 169);
}
@media (min-width: 1px) and (max-width: 1000px) {
    .btn {
        width: 80%;
        font-size: 1em;
    }

}
@media (min-width: 1000px) {
    .container h3{
        font-size: 2em;
    }
    .container p{
        font-size: 1.5em;
    }
    footer h2{
        font-size: 1.5em;
    }
}