
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    overflow-x: hidden;
    font-family: 'Raleway', sans-serif;
}

button{
    font-family: 'Montserrat', sans-serif;
}
button:hover{
    cursor: pointer;
}


.btn1{
    background:transparent;
    border:solid 3px #FF6F83;
    color:#FF6F83 !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 5px 10px;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.btn1::before{
    content: '';
    height:0px;
    width: 100%;
    position: absolute;
    bottom:0;
    left: 0;
    background-color:#FF6F83;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    transition: all .25s ease-in;
    z-index: -1;
    transform-origin: bottom;
}
.btn1:hover::before{
    height: 100%;
    border-radius: 0%;
}
.btn1:hover{
    color:#fff !important;
}

@media only screen and (max-width:800px) {
    .btn1{
        padding: 3px 8px;
    }
}