@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  'Rubik', sans-serif;
}

html,body{
    width: 100%;
    height: 100%;
}

#main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(133, 194, 133);
}

#panel{
    overflow: hidden;
    border-radius: 10px;
    width: 80%;
    height: 80%;
    background-color: #fff;
}

#ptop{
    padding: 0 20%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    color: white;
    width: 100%;
    height: 100px;
    background-color: rgb(94, 151, 94);
}

.elem{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.elem h2{
    font-weight: 300;
    font-size: 22px;
    margin-left: 10px;

}

@media screen and (max-width: 768px) {
    #ptop {
        padding: 0 10px; /* Adjust the padding for smaller screens */
    }

    .elem {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        gap: 5px;
        text-align: center;
    }

    .elem h2 {
        margin-left: 0; /* Reset the margin for smaller screens */
    }
}

.box{
    padding:10px 20px;
    background-color: white;
    border-radius: 5px;
    color: rgb(38, 145, 51);
    font-weight: 500;
    font-size: 22px;
}

#pbtm{
    display: flex;

    flex-wrap: wrap;
    padding: 20px;
    width: 100%;
    height: calc(100% - 100px);
}

.bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    margin: 5px;
    border-radius: 50%;
    background-color: rgb(94, 151, 94);
    color: #fff;
    font-weight: 500;
    font-size: 22px;
}

.bubble:hover{
    background-color: rgb(69, 121, 69);
    cursor: pointer;

}

#over {
    font-weight: 900;
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}