button
{
    color: white;
    background-color: mediumpurple;
    height: 30px;
    border-color: #FFFFFF00;
    border-style: solid;
    border-width: 5px;
    border-radius: 12px;

    font-family: "Unbounded", sans-serif;
    font-weight: 300;

    align-content: center;

    transition: ease-in-out 0.2s;
}

button:hover
{
    border-color: #ba9ddd;
    border-style: solid;
    border-width: 5px;
    cursor: pointer;

    transition: ease-in-out 0.2s;
}

button:active
{
    scale: 0.95;
    border-style: solid;
    border-width: 5px;
    background-color: #ec5c15;
    border-color: #FFA375;
    transition: none !important;
}

.navlink
{
    font-family: "Unbounded", sans-serif;
    font-weight: 300;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    margin: 0 20px;
    display: inline-block;
}

.navlink.active
{
    color: #FFA375;
    font-weight: 500;
}

.navlink:hover
{
    color: #FFA375;
    transform: translateY(-2px);
}