@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Lobster&display=swap");

@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;
}

@font-face {
    font-family: "Darker Grotesque";
    src:
        url("../fonts/DarkerGrotesque-Regular.woff2") format("woff2"),
        url("../fonts/DarkerGrotesque-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 8px;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #f0f8ff;
    font-family: "Rubik", sans-serif;
    color: #333;
}

body {
    width: 93%;
    margin: auto;
    line-height: 1.6;
}

nav ul {
    list-style: none;
    background: #004d00;
    padding: 10px;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: bold;
}

h1 {
    font-family: "Lobster", cursive;
    text-align: center;
    color: #ff5733;
    border-bottom: 3px solid #000;
    padding-bottom: 10px;
}

h2 {
    font-family: "Darker Grotesque", sans-serif;
    text-align: center;
    color: #ff4500;
}

p {
    font-family: "Darker Grotesque", sans-serif;
    font-size: 14px;
    color: #333;
}

p.highlight {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    background-color: #ffffcc;
    padding: 10px;
    border-left: 5px solid #ff5733;
}

img,
video,
embed {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    border: 3px solid #000;
}

.box {
    background-color: #e6f7ff;
    padding: 20px;
    border: 2px solid #0077cc;
    margin: 20px 0;
}

#behavior-section {
    background-color: #ffebcd;
    padding: 25px;
    font-family: "Roboto", sans-serif;
    border: 3px dashed #ff4500;
}

.floatright {
    float: right;
    padding: 10px;
}

.floatleft {
    float: left;
    padding: 10px;
}

.solidborder {
    border: solid #004d00 4px;
    padding: 9px;
}
