

body{
    background-color: papayawhip;
}

h1{
    font-family: arial black;
    color: salmon;
    font-size: 60px;
    text-align: center;
    background: linen;
}

h2{
    font-family: arial black;
    color: royalblue;
    font-size: 30px;
    text-indent: 200px;
}

p{
    font-family: courier new;
    font-size: 20px;
    color: olive;
    text-indent: 300px;
}

*{
    padding: 0;
    margin: 0;                      
    list-style: none;               /* this removes the list dots in front of links */
    box-sizing: border-box;         /* this creates them in a box */
    text-decoration: none;          /* this removes lines under the nav links */
}

.logo{                              
    float: left;
    height: 90px;
    width: 200px;
    padding: 0 50px;
}

nav{                               /* this section is just for nav as a whole */
    height: 115px;
    width: 100%;
    margin-top: -10px;
    background: white;
}

nav ul{                             /* this section is for where nav is positioned */
    float: right;           /* float lets the thing you edit float wherever you want on the page */
    margin-right: 40px;
}

nav ul li{                          /* this section is for each item listed */
    display: inline-block;
    font-size: 20px;
    font-family: arial black;
    line-height: 90px;
    margin: 0 10px;
}

.socials{                       /* this section is for .socials as a whole */
    text-align: center;         /* this is to center the text */
    bottom: 10px;
}
                                /* rememeber, use .class to class a specific class */
.socials li{                    /* this section is for each item in the list */                          
    font-family: courier new;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin: 0 10px;
}

a:link{
    color: black;
}

a:visited{
    color: black;
}

a:hover{
    color: silver;
}

a:active{
    x-sizing: border-box;
}






input[type=text], select, textarea{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 2px;
    margin-bottom: 4px;
    resize: vertical;
}

input[type=submit]{
    background-color: black;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover{
    background-color: grey;
}

.container{
    border-radius: 5px;
    background-color: papayawhip;
    padding: 5px;
}

.column{
    float: left;
    width: 33%;
    margin-top: 6px;
    padding: 10px;
}

.row:after{
    content: "";
    display: table;
    clear: both;
}

/*
@media screen and (max-width: 200px){
    .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
}
}
*/
















