:root {
    --Roboto-Slab: 'Roboto Slab', Helvetica, sans-serif;
}

.DevDavi {
    animation: fadeInDown;
    animation-duration: 1s;
}

.DevDavi > p {
    text-align: center;
    margin: 0px;
    background-color: #A67D0D;
    color: #ffbb00;

    text-decoration: none;
    font-family: var(--Roboto-Slab);
    font-size: 1.8em;
    padding-top: 10px;
    padding-bottom: 10px;
}

.DevDavi > p > a {
    color: #ffbb00;
    text-decoration: underline;

    padding: 0px 3px;

    transition: 0.3s;
}

.DevDavi > p > a:hover {
    background-color: #dda816;
    color: #A67D0D;

    border-radius: 6px;
}