*{
    margin: 0;
    padding: 0;
    font-family: "Super Boys";
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(171, 199, 171);
}

header{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
header h1{
    font-size: 3rem;    
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-top: -50px;
}

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

#ptop{
    display: flex;
    color: #fff;
    padding: 0px 25%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: rgb(78, 142, 78);
}

.elem{
    display: flex;
    align-items: center;
    font-size: xx-large;
    gap: 20px;
}

.box{
    padding: 1px 20px;
    color: rgb(30, 153, 38);
    font-size: 3.5rem;
    background-color: #fff;
    border-radius: 5px;
}

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

.bubble{
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    background-color: rgb(51, 158, 51);
}
.bubble:hover{
    cursor: pointer;
    background-color: rgb(3, 96, 3);
}

.foot{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Times New Roman", Times, serif;
    color: rgb(50, 50, 50);
}
.foot a {
    text-decoration: none;
    color: rgb(30, 100, 30);
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
}
a:hover{
    text-decoration: underline;
}

@media screen and (max-width:378px) {
    header{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    header h1{
        font-size: 2.7rem;    
    }
    #panel{
        overflow: hidden;
        width: 92%;
        height: 88%;
        margin-top: 20px;
        border-radius: 20px;
        background-color: #fff;
    }
    #ptop{
        overflow: hidden;
        display: flex;
        color: #fff;
        padding: 0px 18%;
        width: 100%;
        height: 110px;
        background-color: rgb(78, 142, 78);
    }
    .elem{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
        gap: 2px;
    }
    .box{
        padding: 1px 20px;
        color: rgb(30, 153, 38);
        font-size: 2.5rem;
        background-color: #fff;
        border-radius: 5px;
    }
    #pbtm{
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        gap: 10px;
        width: 100%;
        height: calc(100% - 110px); 
        padding: 15px; 
        margin-top: 4px;
    }
    .bubble{
        height: 60px;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        border-radius: 50%;
        color: rgb(255, 255, 255);
        background-color: rgb(51, 158, 51);
    }
}