/* the basics */
body {
	background-color: #FDF9EE;
}


/* nav encompases the navigation */
.nav {
    display: grid;
    background-color: #FDE2D2;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 60px;
    padding: 20px;
}

.nav a {
	text-decoration: none;
    color: #195C76;
}

/* space to the left of the navigation buttons with the site name */
.navspc {
    grid-column: span 2;
    padding: 5px;
    font-size: 20px;
    text-align: left;
}

/* navigation buttons */
.navitm {
    color: #195C76;
    padding: 5px;
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
    grid-row: span 1;
    grid-column: span 1;
    transition-duration: 0.4s;
}

.navitm:hover {
    background-color: #195C76;
    color: #FDF9EE;
    padding: 5px;
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
    grid-row: span 1;
    grid-column: span 1;
}

                        /*end navigation*/


/* home image banner */
.homebann {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    background-color: #FDE2D2;
    align-items: center;
}

.homebann > img {
    width: 100%;
    height: 100%;
    grid-area: 1 / 1 / 5 / 5;
}

#welcome {
    grid-area: 2 / 1 / 3 / 5;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.315);
    color: #FDF9EE;
    text-align: center;
    font-size: 100px;
}

/* page body */
.homebody {
    display: grid;
    background-color:#FDF9EE;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
}

/* child tags for homebody */
.homeinny {
    grid-area: 1 / 1 / 2 / -1;
    color: #195C76;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
}

.hmh3 {
    grid-area: 2 / 1 / 3 / -1;
    font-size: 50px;
    color: #195C76;
    padding-left: 7%;
}

/* navigation buttons on the homepage */
.butts{
    display: grid;
    align-content: center;
    grid-template-columns: 7% auto 7% auto 7% auto 7%;
    grid-template-rows: auto auto auto;
}

.homebutt {
    background-color: #FDE2D2;
    border: none;
    color: #195C76;
    padding: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    margin: 4px 2px;
    border-radius: 12px;
    height: 30%;
    width: 100%;
    transition-duration: 0.4s;
}

.homebutt:hover {
    background-color: #195C76;
    border: none;
    color: #FDE2D2;
    padding: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    margin: 4px 2px;
    border-radius: 12px;
    height: 30%;
    width: 100%;
}