
@media screen and (min-width: 800px) {
    
    h1 	{
		font-size: 34px;
        line-height: 70px;
	}
	h2 	{
		font-size: 27px;			
        line-height: 54px;
	}
	h3 	{
		font-size: 24px;			
        line-height: 46px;
	}
	h4 	{
		font-size: 20px;			
		font-weight: 600;
        line-height: 40px;
	}
	h5 {
		font-size: 18px;
        font-weight: 600;
        line-height: 35px;
	}
	h6 {
		font-size: 22px;
        font-weight: 300;
		line-height: 35px;
	}
	p 	{
		font-size: 17px;
		line-height: 27px;
	}
	a 	{					
		color: inherit;
		text-decoration: none;
	}
	ul 	{
		font-size: 17px;			
        line-height: 27px;
		padding-left: 30px;
	}
	li 	{
		font-size: 17px;
        line-height: 27px;
		padding-left: 15px;
	}
    
    .grid {
        display: grid;
        grid-template-areas:        "topbar topbar topbar"
                                    "left main right"
                                    "footer footer footer";
        grid-template-columns:      120px 1fr 120px;
        grid-template-rows:         80px
                                    1fr
                                    70px;
        min-height: 100vh;
        justify-content: center;
    }
        .grid_topbar {
            position: sticky; 
            top: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            grid-area: topbar;
        }
        .grid_left {
            position: sticky;
            height: calc(100vh - 80px);
            grid-area: left;
            display: flex;
            flex-direction: column; 
            align-items: center;
        }
        .grid_main {
            grid-area: main;
            margin: 0;
            padding-top: 4%;
            padding-right: 7%;
            padding-bottom: 4%;
            padding-left: 7%;
        }
        .grid_right {
            position: sticky;
            height: calc(100vh - 80px);
            grid-area: right;
            align-items: center;
        }
            .nav {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            .main_content {
                padding-top: 0;
                padding-right: 6%;
                padding-bottom: 0;
                padding-left: 6%;
            }
            .social {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-top: 50px;
                margin-bottom: 20px;
            }
                .main_padded {
                    display: flex;
                    flex-direction: column;
                    width: 80%;
                    padding-top: 30px;
                    padding-right: 60px;
                    padding-left: 60px;
                    padding-bottom: 20px;
                    margin-top: 20px;
                    margin-bottom: 20px;
                    
                }
                .form_outline {
                 /*   width: 100%;
                    height: auto;   */
                    padding-top: 30px;
                    padding-right: 60px;
                    padding-left: 60px;
                    padding-bottom: 20px;
                }
                .form_error {
                    width: 100%;
                }

                .top_btn {
                    background-color: #32CD32;
                    border-radius: 100px 0px 100px 0px;
                    width: auto;
                    height: 50px;
                    min-width: 130px;
                    max-width: 150px;
                    margin: 10px;
                    padding-right: 15px;
                    padding-left: 15px;
                }
    
                .full_img {
                    width: auto;
                    height: auto;
                    max-width: 100%;
                    max-height: 100%;
                }
                .search_bar {
                    width: 80%;
                    min-width: 500px
                }
                .img_tile {
                    width: auto;
                    max-width: 100%;
                    height: auto;
                }
                .social_icon {
                    width: 40px;
                    height: 40px;
                }   
                .social_icon_wide {
                    width: 50px;
                    height: 36px;
                }
}

