<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&amp;family=Press+Start+2P&amp;display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-image: url("bg.png");
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(2px);
    background-color: rgb(187, 228, 187);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Press Start 2P', cursive;
    color: #fff;
}

#container{
    border: 1.5px solid #000;
    border-radius: 5px;
    overflow: hidden;
    height: 80%;
    width: 80%;
}

#container-top{
    border-bottom: 1.5px solid #000;
    padding: 0 5vw;
    width: 100%;
    height: 65px;
    background-color: #9681EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.elem{
    padding: 1vw;
    gap: 1.5vw;
    border: 1.5px solid #000;
    border-radius: 5px;
    background-color:  #EF4423;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elem h4{
    font-size: 1vw;
    color: #000;
    font-weight: 500;
}

/* .box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 2px;
    color:#000;
    height: 30px;
    width: 50px;
} */

#container-bottom{
    background-color: #9681eb49;
    color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5vw;
    gap: 0.5vw;
    width: 100%;
    height: calc(100% - 65px);
    flex-wrap: wrap;
}

.bubble{
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6EB14;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1.5px solid #000;
}

.bubble:hover{
    background-color: yellowgreen;
}

.bubble h2{
    font-weight: 300;
    font-size: 15px;
}

@media (max-width:600px) {
    .elem{
        padding: 2.5vw;
        gap: 1.5vw;
    }
    .elem h4{
        font-size: 2vw;
    }
    #container-bottom{
        padding: 2vw 0.5vw;
        gap: 1.4vw;
    }
}</pre></body></html>