body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 500px;
    margin: 30px auto;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

h1,
h2 {
    color: #000;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    background: #02C463;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.btn_img {
    width: 30px;
    height: 30px;
}

.ripple {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(4);
        opacity: 0;
    }
}