/* Welcome to the Rainbow CSS Stylesheet */
/* Let's make the web a more colorful place! */

body {
    background-color: #FFFFFF;
    color: #333333;
    font-family: 'Arial', sans-serif;
}

h1, h2, h3 {
    text-align: center;
    color: #FF69B4; /* HotPink */
}

a {
    color: #1E90FF; /* DodgerBlue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 80%;
    margin: 0 auto;
}

button {
    background-color: #32CD32; /* LimeGreen */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #228B22; /* ForestGreen */
}

.navbar {
    background-color: #FFD700; /* Gold */
    overflow: hidden;
}

.navbar a {
    float: left;
    display: block;
    color: #FFFFFF;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #FFA500; /* Orange */
}

.footer {
    background-color: #8A2BE2; /* BlueViolet */
    padding: 10px 0;
    text-align: center;
    color: white;
}

.froge-icon {
    width: 50px; /* size of our fab froge icon */
    height: auto;
}