/** Main crap **/
body {
    font-family: Arial;
    font-size: 20;
    color: rgb(31, 33, 36);
    background-color: #ffffff;
}

.main {
    padding-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
}

.main h1{
    box-shadow: 0px 2px 0px #cccccc;
}

button {
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    padding: 10px;
    border: none;
    background: #ef8a8f;
    border-radius: 5px;
    cursor: pointer;
}
button:hover{
    padding-top: 8px;
    padding-bottom: 12px;
    background: #f2bbbf;
    box-shadow: 0px 2px 2px #bbbbbb;
}

/** Navbar **/
.navbar {
    background-color: #ffffff;
    overflow: hidden;
    position: fixed;
    top: 3px;
    left: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0px 1px 0px #cccccc,
        0px -4px 0px #b6434b;
}
.navbar img{
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    position: fixed;
    top: 3;
    padding-left: 5px; 
    padding-right: 5px;
    width: auto; 
    height: 50px;
}
.navbar img:hover{
    background-color: #f2bbbf;
}

.navlinks {
    padding: 15px;
    padding-left: 60px;
}
.navlinks a{
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    padding: 20px;
    color: #020d0d
}
.navlinks a:hover{
    background-color: #f2bbbf;
    color: #020d0d
}


/** Links **/
a{
    color: #ef8a8f;
    margin: auto;
}
a:link, a:visited {
    text-decoration: none;
    cursor: pointer;
}
a:hover, a:active {
    color: #b6434b;
}

/** Custom scrollbar **/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #dddddd;
}
::-webkit-scrollbar-thumb {
    background: #bbbbbb; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #868686; 
}