*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-color: #1F7D53;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bubble_container{
    margin: 0 auto;
    width: 100%;
    height: 630px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.bubbleTop p{
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.bubbleTop {
    height: 100px;
    background-color: #255F38;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 50px;
}

.bubbleTop span{
    background-color: white;
    color:#3d8b57;
    padding: 5px 15px;
    border-radius: 5px;
}

.bubbleBottom{
    width: 100%;
    height: calc(100% - 100px);
    padding: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.bubbles{
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #1F7D53;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bubbles:hover{
    background-color: #255F38;
}

#startbtn{
    background-color: #299665;
    padding: 10px 25px;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#startbtn:hover{
    background-color: #27391C;
}

@media screen and (max-width: 500px) {
    .bubbleTop{  
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }
}