.link_out-button {
    display: block;
    width: 148px;
    padding: 8px 16px;
    margin: 0 auto 12px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff0000, #ff3333);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: transform 0.3s ease;
}

.link_out-button:hover,
.link_out-button:focus {
    color: #ffffff;
    outline: none;
    transform: scale(1.05);
}

.link_out-button:active {
    transform: scale(0.95);
}

.link_out-button:hover[style*="background-color"],
.link_out-button:focus[style*="background-color"] {
    background-color: inherit;
    color: inherit;
}
