:root {
    --background-color: #0F222D;
    --logo-color: #DB321A;
    --accent-color: rgb(171, 171, 186);
    --main-font: "Segoe UI", 'arial', Times, serif;
}

#greeting {
    font-family: var(--main-font);
    margin-left: 30px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

#greeting_div {
    background-color: lightgray;
    margin-top: -4px;
    height: 60px;
    position: relative;
}

.quick_links {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    
}

.quick_links a {
    text-decoration: none;
    width: 100%;
}

.quick_btn {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 0;
    height: 50px;
    display: inline;
    color: #ffffff;
    font-size: 22px;
    font-family: var(--main-font);
    border: none;
    background-color: blue;
    border-radius: 10px;
}

.quick_btn:hover {
    background-color: darkblue;
    text-decoration: underline;
    cursor: pointer;
}