* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2c3e50;
} */

.container {
    width: 300px !important;
    display: flex;
    flex-direction: column;
    margin: 0px !important;
    padding: 0px !important;
    background-color: rgb(211, 222, 223);
}

.button {
    position: relative;
    width: 300px;
    height: 73px;
    /* margin-bottom: 15px; */
    cursor: pointer;
    text-align: center;
}
.button1 {
    position: relative;
    width: 300px;
    height: 73px;
    cursor: pointer;
    text-align: center;
    background-color: rgb(253, 205, 191);
}

.shape {
    width: 300px !important;
    height: 73px !important;
    fill: none;
    stroke: rgb(148, 201, 213);
    stroke-width: 6;
    stroke-dasharray: 100 490;
    stroke-dashoffset: -472;
    transition: 1s ease;
    
}
svg{
    width: 300px !important;
    height: 73px !important;
}
.text {
    width: 300px;
    height: 73px !important;
    text-align: center;
    position: absolute;
    line-height: 73px !important;
    /* left: 50%; */
    top: 0;
    /* transform: translate(-50%, -50%); */
    color: black;
    letter-spacing: 2px;
}

.button:hover .shape {
    stroke: rgb(148, 201, 213);
    stroke-width: 12;
    stroke-dasharray: 50 0;
    stroke-dashoffset: 0;
    
}