@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: white;
}

header {
    background-color: rgb(0, 0, 0);

    display: flex;

    /*  push left and right item to far edges and item in the middle will be evenly spaced between those two */
    justify-content: space-between;

    /* center eveything in the header to center */
    align-items: center; 

    /* % creates space inside and elements board that is calculated as x% of the parent container */
    padding: 32px 4%;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 85, 0.2);

}

body {
    font-size: 1em;
    background-color: rgb(20, 30, 21);
    font-family: "Roboto", sans-serif;
    line-height: 1.4;


}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.2em;
}
p{
    text-align: left;
}

/* nav */
li, a, button {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    font-size: 1.3em;
    color:rgb(77, 156, 99);
    text-decoration: none;
}

.hamburger {
    display: block; /* Show button on mobile */
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #d7d7d7;
    transition: 0.4s;
}

.logo {
    /* hover it turns into pointer  */
    cursor: pointer;
}

.navLinks {
    list-style: none;
}

.navLinks li {
    display: inline-block;
    padding: 0px 20px;
}

.navLinks li a:hover {
    color:rgb(240, 248, 255, 1);
}

button {
    padding: 8px 24px;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    color:black
}

button:hover {
    background-color: rgba(5, 222, 132, 0.8);
}

.hamburger:hover {
    background-color: rgb(0, 0, 0);
;
}

.homePageContainer {
   display: flex;
   flex-wrap: wrap;
   padding: 32px;
}

.card {
   text-align: center;
   align-items: center;
   padding: 20px;
}
.card h1 {
    padding-top: 20px;
}
.card p { 
    font-size: 1.2em;
    padding: 10px;
    padding-bottom: 40px;
}

.card img {
    width: 100%;
}

hr {
    border: 1px solid rgb(74, 119, 79);
}
