html{
    font-size: 10px;
}
ul{
    padding:1rem 3rem;
}
sidebar li{
    font-size: 4vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-bottom: 2rem;
}

@media screen and (min-width: 768px){
	sidebar li{
		font-size: 	2vw;
	}
}
@media screen and (min-width: 1440px){
    sidebar li{font-size: 2.4rem;}
}

h1,h2,h3{
    margin: 0;
    padding: 0;
}
h1{
    text-align: center;
    font-size: 10vw;
    font-family:  'Book Antiqua', 'Times New Roman', Times, serif;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 1440px){
    h1{
        font-size: 90px;
    }
}
large{
    font-size: 140%;
    font-weight: 600;
    display: block;
}
body{
    font-size: 1.6rem;
}
p{
    font-size: 2.4rem;
    
}

label{
    margin: 2rem 4rem 2rem 0;
}
input{
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
    margin: 1rem auto;
    max-width: 100%;
    display: block;
}

.anchor-right{
    font-size: 4rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    text-shadow: 0rem 0.01rem .01rem #0e0e0e;
}

.anchor-right .fa-tree{
    color: rgb(60, 128, 12);
}

body{color: #000;
    background-color: white;}
     .layout-main{
         display: grid;
         grid-template-columns: 100%;
     }
     @media(min-width: 77rem){
        .layout-main{
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 70% 5% 25%;
        }
     }


     @media screen and (min-width: 768px){
     .three-up{
         display: grid;
         grid-template-columns: 33% 33% 33%;
     }
    }
     header.header{
         background-color: rgba(205, 41, 41, 0.867);
         width: 100%;
         
         box-sizing: border-box;
         border-radius: 5px 5px 0 0;
         padding: 1rem;
         color: #fff;
         font-size: 3rem;
         font-weight: bold;
         line-height: 1.4;
     }
     sidebar{
         margin-top: 2rem;
         padding: 2rem;
         background-color: rgba(229, 223, 223, 0.2);
         box-shadow: 1px 1px 1px #ccc;
     }

     sidebar img{
         border-radius: 50%;
         display: block;
         margin: 0 auto;
         width: 20rem;
         box-shadow: 1rem 1rem 1rem .0001rem rgba(192, 204, 227, 0.41);
         transition: 2s  ease all;
     }

     sidebar img:hover{
         transform: scale(1.1);
     }
     .content{
         margin: 2rem 0 0 0;
         padding: 2.5rem 2.5rem 6rem 2.5rem;
         color: slategrey;
         background-color: rgba(192, 204, 227, 0.141);
         position: relative;
         box-shadow: 1px 1px 1px #ccc;
     }

     h2{
         font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     }

     pre{
         font-size: 1.6rem;
         background-color: chartreuse;
         padding: 5px;
         font-family: 'Courier New', Courier, monospace;
         font-weight: 900;
     }
    button{
        background-color: rgb(250, 63, 16);
        border-radius: .5rem;
        border-style: none;
        color: #fff;
        font-size: 1.8rem;
        padding: 1rem;
        text-transform: uppercase;
        display: inline-block;
        margin: 1rem 3rem;
    }

    .t-align-r{
        text-align: right;
    }


    #thank-you-msg{
        display: none;
    }

    #thank-you-msg.open{
        z-index: 1000;
        display: block;
        position: fixed;
        height: 100%; 
        width: 100%;
        top: 0;
        background: rgba(0,0,0,0.6);
    }

    #thank-you-msg .contained{
        position:relative;
        min-width: 20rem;
        top: 30vh;
        padding: 4rem;
        margin: 0 auto;
        background-color: #ccc;
        box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    }
    #closer{
        position: absolute;
        right: 2rem;
        top: 2rem;
        font-family: sans-serif;
        font-weight: bold;
        border: 1px solid #666;
        padding: .5rem 1rem;
    }
