
* {box-sizing: border-box;}

.navbar {
    overflow: hidden;
    background-color: #333 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background: #ddd;
    color: black;
}

.main {
    margin-top: 50px;
    float: center;
    border-bottom: none;
    display: block;
    text-align: center;
    position: relative;
}

.main a.button {
    background: #4f55ae;
    border-radius: 4px;
    color: black;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 16px;
    display: block;
    width: 300px;
    margin: auto;
}

.main a.button:hover { 
    background-color: #0d0f36;
    color: rgb(255, 255, 255);
}

.main a.active {
    background-color: dodgerblue;
    color: white;
}
.divider {
    height: 25px;
    padding: 30px 0px;
    display: block;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #628a91;
}