/* Timeline Styles for the Froge Page */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f8ff;
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #ddd;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.container.left {
    left: 0;
}

.container.right {
    left: 50%;
}

.container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF5733;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.container.right::after {
    left: -16px;
}

.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}
   
/* Froge-Themed Colors and Fonts */
h2 {
    color: #32CD32;
    font-size: 24px;
}
p {
    color: #556B2F;
    line-height: 1.6;
}
.footer {
    text-align: center;
    font-size: 12px;
    color: #808080;
}
a {
    color: #9ACD32;
    text-decoration: none;
}
a:hover {
    color: #6B8E23;
}
.froge-link {
    font-weight: bold;
    transition: color 0.3s ease;
}
.froge-link:hover {
    color: #228B22;
}