* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

.header {
    width: 100%;
    height: 75px;
    display: block;
    background-color: #282a36;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.25);
    position: fixed;
    z-index: 1;

}

.header__inner {
    width: 80%;
    height: 100%;
    display: block;
    margin: 0 auto;
    background-color: #282a36;
}

.logo {
    height: 100%;
    display: table;
    float: left;
}

.logo h1 {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 42px;
    margin-top: -18px;
}

a {
    color:#f8f8f2;
    transition: all 0.15s ease 0s;
}

a:hover {
    color: #ff79c6;
}

button {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 200;
    cursor: pointer;
    float: right;
    height: 60%;
    width: 120px;
    background-color: rgba(80, 250, 123, 1);
    border-radius: 10px;
    transition: all 0.3s ease 0s;
    border: none;
    margin: 15px auto;
}

button:hover {
    background-color:rgba(80, 250, 123, 0.8)
}


