.default-btn {
    text-decoration: none;
    text-align: center;
    font-family: 'Tilt Warp', sans-serif;
    padding: 1.5vh 1.5vw;
    font-size: 1.2rem;
    border: solid 3px #E83151;
    color: white;
    width: fit-content;
    outline: none;
    transition: all 0.3s ease-in-out;

    background: rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.default-btn:hover {
    background-color: #E83151;
}

@media screen and (max-width: 1024px) {
    .default-btn {
        border: none;
        background-color: #E83151;
        transition: none;
        padding: 1.5vh 1.5vh;
    }
}