body {
    font-family: 'Rock Salt', cursive;
    background-color: #f0f8ff;
    color: #333;
}

h1 {
    text-shadow: 2px 2px #ff0000;
    color: #f08;
}

a {
    color: #8a2be2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.froge-icon {
    width: 100px;
    height: 100px;
    background: url('/images/froge.svg');
}

.chart {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
}

.chart-bar {
    width: 30px;
    background-color: #4caf50;
    transition: height 0.3s;
}

.chart-bar:hover {
    background-color: #45a049;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #282c34;
    color: white;
}

@media (max-width: 600px) {
    .chart {
        flex-direction: column;
    }
}