* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 140%;
}

html,
body {
    color: #333;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ----- HEADINGS ----- */ 
h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 30px;
    margin-top: 12px;
    font-size: 240%;
    word-spacing: 2px;
    letter-spacing: 2px;
    text-align: center;
}

h1:after {
    display: block;
    height: 2px;
    background-color: #3266f0; 
    content: " ";
    width: 320px;
    margin: 0 auto;
    margin-top: 8px;
}
/*Page
------------------------------------- 
*/ 
body{
min-height: 100vh;
}
ul{
    list-style: none;
}
.loggo{
    color:#fff;
    width: 80%;
    padding: 1.2%;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #333;
    font-size: 24px;
    background-color: #3266f0;
    cursor: pointer;
    margin: 36px auto;
    text-align: center;
    
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.loggo:hover,
.loggo:active{
    background-color: #3399f2;
}
/*Footer
---------------------------------------------------------------------------
*/
footer {
    background-color: #e8e8e8;
    padding: 20px;
    font-size: 16px;
    width: 100%;
    color: #444;
    display: flex;
}
.footer-nav {
    list-style: none;
    float: left;
    text-align: justify;
}
.footer-nav li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited{
    text-decoration: none;
    border: 0;
    color: #262020;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    font-size: 16px;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ee35fd;
}


