@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');

*{
    -webkit-tap-highlight-color: transparent; /* For iOS Safari */
    margin:0;padding:0;box-sizing:border-box;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

body,html{
    min-height: 100vh;
    width:100%;
    overflow: hidden;
}
body{
    background: linear-gradient(90deg, rgba(255,231,255,1) 0%, rgba(254,255,227,1) 35%, rgba(226,255,239,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple-btn{
    padding:7px 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight:500;
    background-color: rgb(40, 110, 201);
    color:rgb(224, 226, 229);
    border:none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* letter-spacing: 2px; */
    cursor: pointer;
    box-shadow: 2px 2px 20px 2px rgba(0, 0, 0, 0.3);
    position:relative;
    top: auto;
    left: auto;
    overflow:hidden;
    transition:box-shadow 0.5s;
    margin: 20px;
    -webkit-user-select:none;
    user-select: none;
}

.gola{
    border-radius: 100%;
    width:25px;
    height: 25px;
    background-color: rgb(243, 243, 243);
    opacity:0;
    position: absolute;
    transform: translate(-50%,-50%);
    animation: ripple 1s ease-in-out 1;
    box-shadow: 0px 0px 10px 10px rgb(242, 242, 242)
}

@keyframes ripple {
    0%{
        
        transform: scale(0.1) ;
        transform: translate(-50%,-50%);
        opacity:0.4;

    }
    50%{
        transform: scale(10);
        opacity: 0.25;
    }

    100%{
        transform: scale(10);
        opacity: 0;
    }
}
.ripple-btn:active{
    box-shadow: 0.5px 0.5px 10px rgba(0, 0, 0, 0.25);
}

.ripple-btn:hover{
    box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.25);
    background-color: rgb(50, 122, 215);
}

.gola2{
    background-color: rgb(243, 243, 243);
    box-shadow: 0px 0px 10px 10px rgb(242, 242, 242);
    width: 30px;
    height: 30px;
    position : absolute;
    transform: translate(-50%,-50%);
    transform: scale(10);
    border-radius: 100%;
    opacity:0;
    animation: ripple2 2s ease-in-out 1;
}

@keyframes ripple2 {
    0%{
        
        transform: scale(0) ;
        transform: translate(-50%,-50%);
        opacity:0.4;

    }
    50%{
        transform: translate(-50%,-50%);
        transform: scale(10);
        opacity: 0.3;
    }
    100%{
        opacity: 0.1;
    }
}

.container{
    background-color: rgb(255, 255, 255);
    width: 100%;
    max-width: 500px;
    margin: 20px;
    border-radius: 10px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 300px;
    padding: 20px 50px;
    box-shadow: 15px 15px 30px 5px rgba(0, 0, 0, 0.25);

}

.container > section {
    display: flex;
    width:100%;
    align-items: center;
    justify-content: space-around;  
}