@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Arimo", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 128, 0, 0.394);
}

#panel {
    overflow: hidden;
    width: 80%;
    height: 80%;
    border-radius: 10px;
    background-color: #fff;
}

#ptop {
    display: flex;
    padding: 0px 30%;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    height: 100px;
    width: 100%;
    background-color: rgba(0, 75, 0, 0.672);
}

.elem {
    display: flex;
    align-items: center;
    gap: 20px;
}

.elem h2 {
    font-weight: 500;
    font-size: 22px;
}

.box {
    color: black;
    font-weight: 600;
    font-size: 25px;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 5PX;
}

#pbtm {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    height: calc(100% - 100px);
    padding: 20px;
}

.bubble {
    width: 60px;
    height: 60px;
    background-color: rgb(72, 104, 72);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.bubble:hover {
    cursor: pointer;
    background-color: rgba(0, 75, 0, 0.672);
}


@media (max-width:400px) {
    #panel {
        width: 90%;
    }

    .box {
        font-weight: 500;
        font-size: 20px;
        padding: 6px 16px;
    }

    #ptop {
        padding: 0px 5px;

    }

    .elem h2 {
        font-size: 19px;
    }

    .elem {
        gap: 9px;
    }

    .bubble {
        width: 58px;
        height: 58px;
    }
}