body {
    background-color: #344e41;
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
}

.page-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
    position: relative;
}

footer nav a {
    text-decoration: none;
}

.nature {
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    background-attachment: fixed;
    overflow: hidden;
    flex-wrap: wrap;
}

.nature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("naturalphoto.jpg");
    background-size: cover;
    background-position: center;
    max-width: 100%;
}

.nature-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    color: white;
    font-size: 60px;
}

.nature-text p {
    font-size: 30px;
    transform: translate(-4%, -70%);
    color: white;
    font-size: 50px;
    text-align: center;
}

.explore {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, 20%);
    padding: 10px 23px;
    background-color: #a3b18a;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-family: Montserrat, sans-serif;
    border: 1px solid white;
}

.explore:hover {
    background-color: #81b29a;
    border-color: white;
}

.main-font {
    font-family: 'Lora', serif;
}