body {
    margin: 0;
    overflow: hidden;
    align-items: center;
    height: 100vh;
    background-color: #f09469; /* One of the colors from the palette */
    font-family: "helvetica", sans-serif;
text-align: center;
}

.header {
    height: 50px;
    padding: 5px 0 12px;
    background-color: #fc4e51;
    color: aliceblue;
  }
.bubbs {
    justify-content: center;
    width: 100%;
    height: 100%;

}

.container {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.bubble:hover {
    transform: scale(1.2);
}


  