.button_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    background: linear-gradient(90deg, #ff0066, #ff6600);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.button:hover {
    box-shadow: 0 10px 20px rgba(255, 0, 102, 0.5);
    transform: translateY(-3px);
}
.margin_top{
    margin-top: 30px;
}

.glowing_button{
    box-shadow: 0 0 5px cyan, 0 0 25px cyan;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: cyan;
    padding: 15px 30px;
    font-size: 16px;
}
.glowing_button:hover {
    box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan, 0 0 200px cyan;
}