/* Buttons */
.ya-button {
    width: fit-content;
    height: 50px;
    padding: 5px 15px 5px 15px;
    border: solid 2px white;
    border-radius: 15px;
    font-family: "Sfp-Medium";
    font-size: 18px;
    cursor: pointer;
    transition-duration: 250ms;
}

.ya-button:hover {
    transform: translate(-5px,-5px);
    box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.4);
}

.ya-button:active {
    transform: translate(0px, 0px);
    box-shadow: none;
}