/* style.css */
html {
    font-size: 75%;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
}

header {
    text-align: center;
    padding: 10px;
}
header, nav, main, footer {
    font-size: 1rem; /* 1rem = 12px based on the html font size */
}

.hero-logo img {
    max-width: 50%;
    height: auto;
    margin-bottom: 20px;
}

.navbar {
    position: relative;
}

.hamburger-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.nav-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    display: inline;
    margin: 0 10px;
}

.nav-menu li a {
    text-decoration: none;
    color: black;
}

main {
    margin: 20px;
    text-align: left;
}

footer {
    text-align: center;
    padding-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.6rem;
}

/* FONTS */
.thick-bold-green {
    font-family: 'Roboto', sans-serif;
    font-weight: 900
    font-size: 1rem; /* Adjust the size as needed */
    color: darkgreen; /* Sets the font color to dark green */
    text-align: center; /* Centers the text inside the div */
}

/* SCREEN SHOTS */
.image-container {
    text-align: center; /* Center the images */
    width: 100%; /* Span the full width of the viewport */
    padding: 10px 0; /* Add padding around the images */
}

.image {
    width: 30%; /* Adjust the width as needed */
    padding: 5px; /* Padding around each image */
    box-sizing: border-box; /* Include padding in the width calculation */
    display: inline-block; /* Align images horizontally */
    vertical-align: middle; /* Align images vertically */
}

.middle-image {
    width: 33%; /* Make the middle image 10% larger */
    border-radius: 7px;
}

.button-container {
    display: flex;
    justify-content: center; /* Centers the button horizontally */
    align-items: center; /* Optional: if you also want vertical centering */
    /* height: 100vh; Full viewport height, useful for vertical centering */
}
.sub-text{
    display: flex;
    justify-content: center;
    font-size: .5rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.download-button {
    display: inline-block;
    background-color: #6AA84F;
    color: white; /* Adjust text color as needed */
    padding: 15px 30px; /* Adjust padding as needed */
    border-radius: 10px; /* Semi-rounded corners */
    font-family: 'Roboto', sans-serif;
    font-weight: 900; /* Bold font */
    font-size: 1rem; /* Adjust font size as needed */
    text-align: center;
    text-decoration: none; /* Removes the underline from the link */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.download-button:hover {
    background-color: #5C8D47; /* Slightly darker color on hover */
}



@media screen and (max-width: 600px) {

    .hamburger-icon {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }

    .nav-menu li {
        display: block;
        text-align: left;
        margin: 10px 0;
    }

     .image, .middle-image {
        width: 90%; /* Adjust the width for smaller screens */
        display: block; /* Stack images vertically */
        margin: 10px auto; /* Add margin for vertical spacing and horizontal centering */
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 87.5%; /* Increases the base size to around 14px */
    }
}

@media screen and (min-width: 1024px) {
    html {
        font-size: 100%; /* Increases the base size to 16px */
    }
}
