.br-25 {
    border-radius: 25px;
}

.btn-main {
    color: white;
    border-radius: 5px;
    padding: 10px 25px;
    background: var(--accent-tertiary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    text-decoration: none;
    display: inline-block;
    transition: all .25s ease-in-out;
	font-size: 1.5rem;
}

.btn-main:hover {
    background: var(--accent-quaternary);
    color: white;
    text-decoration: none;
}