@charset "utf-8";
/* General Page Styling */
body {
    font-family:  Rubik, Arial, sans-serif;
    color: #1D51B1;
    margin: 0;
    padding: 0;
}


/* Navigation Styling */
ul {
    font-size: 16px;
    font-family:  Rubik, Arial, Helvetica, sans-serif;
    list-style-type: none;
    background-color: #222833;
    padding: 29px;
    text-align: center;
}

ul li {
    display: inline;
    margin: 0 15px;
}

ul li a {
    color: #2E3E5C;
    text-decoration: none;
    font-weight: bold;
}

ul li a:hover {
    color: #ffbb00;
}

/* Headings */
h1 {
    padding: 55px;
    text-align: center;
    color: #2D4C86;
    font-size: 72px;
    font-family: Nunito, sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}
h2 {
    text-align: center;
    color: #1D51B1;
    font-size: 60px;
    font-family:  Rubik, Arial, Helvetica, sans-serif;
}
h3 {
    text-align: center;
    color: #1D51B1;
    font-size: 60px;
    font-family:  Rubik, Arial, Helvetica, sans-serif;
}
/* Image Styling */
img {
    display: block;
    margin: 0 auto;
    border: 5px solid #222833;
    border-radius: 10px;
}

/* Figure Styling */
figure {
    text-align: center;
    margin: 20px 0;
}

/* Figcaption Styling */
figcaption {
    font-family: Rubik, Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-style: italic; 
    color: #ffa617;
    
}

/* Paragraph Styling */
p {
    text-align: justify;
    color: #95741a;
    font-family:  Rubik, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    margin: 15px;
}

/* Ordered List Styling */
ol {
    font-family:  Rubik, Arial, Helvetica, sans-serif;
    background-color: #222833;
    padding: 21px;
    border-left: 5px solid #ff8000;
    color: antiquewhite
}

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: Arial, Helvetica, sans-serif;
}

/* Anchor Link Styling */
a {
    color: #1D51B1;
    text-decoration: none;
}

a:hover {
    color: #ffbb00;
}

/* Class Selectors */

/* Class for frog descriptions */
.frog-description {
    font-size: 18px;
    color: #ffbb00;
    margin-top: 10px;
}
/* Class for floating Logo*/
.floatright {
    float: right;
    margin-right: 25px;
    margin-top: 15px;/* Optional: Add space between the logo and other content */
}
/* Body container */
#container{
    width:90%;
    padding:15px;
    margin-top: 25px;
    margin-bottom: 25px;
    background-image: url(../images/background2.jpg);
    background-color: #2B2D33;
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}