@charset "utf-8";
@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Regular.woff2') format('woff2'),
        url('../fonts/Rubik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    color: #1B3E1F;
    background-color: #DFF6DD;
    margin: 0;
    padding: 0;
}


/* Navigation Styling */
ul {
    font-size: 16px;
    font-family: Rubik, Arial, Helvetica, sans-serif;
    list-style-type: none;
    background-color: #228B22;
    padding: 14px;
    text-align: center;
}

ul li {
    display: inline;
    margin: 0 15px;
}

ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

ul li a:hover {
    color: #FFD700;
}

/* Headings */
h1 {
    text-align: center;
    color: #104F1D;
    font-size: 72px;
    font-family: Rubik , Arial, Helvetica, sans-serif;
}
h2, h3 {
    text-align: center;
    color: #146224;
    font-size: 60px;
    font-family: Rubik , Arial, Helvetica, sans-serif;
}
/* Image Styling */
img {
    display: block;
    margin: 0 auto;
    border: 5px solid #0D3311;
    border-radius: 10px;
}

/* Figure Styling */
figure {
    text-align: center;
    margin: 20px 0;
}

/* Figcaption Styling */
figcaption {
    font-size: 18px;
    font-style: italic;
    color: #af9500;
}

/* Paragraph Styling */
p {
    text-align: justify;
    color:#1a0019;
    font-family: "Nunito", sans-serif;
    font-weight: 850;
    font-style: normal;
    line-height: 1.5;
    margin: 15px;
}

/* Ordered List Styling */
ol {
    font-family: Rubik, Arial, Helvetica, sans-serif;
    background-color: #C8E6C9;
    padding: 10px;
    border-left: 5px solid #2E7D32;
}

ol li {
    margin: 5px 0;
}

/* Video and Audio Element Styling */
video, audio {
    display: block;
    margin: 10px auto;
}

/* Email Author Styling */
#email_page_author {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-family: Rubik, Arial, Helvetica, sans-serif;
}

/* Anchor Link Styling */
a {
    color: #006400;
    text-decoration: none;
}

a:hover {
    color: #FF4500;
}

/* Class Selectors */

/* Class for frog descriptions */
.frog-description {
    font-size: 16px;
    color: #7e00da;
    margin-top: 10px;
}

/* Class for frog title (specific to some headings) */
.frog-title {
    color: #3160fd;
    font-style: italic;
    text-align: center;
}

/* Class for frog list items */
.frog-list {
    background-color: #E8F5E9;
    padding: 10px;
    border-left: 3px solid #388E3C;
}

.frog-list li {
    font-size: 14px;
}