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


body {
    width: 93%;
    margin: auto;
    line-height: 1.6;
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: "Rubik", sans-serif;
    color: #2c3e50; 
}

/* Navigation Styles */
nav ul {
    list-style: none;
    background: #2c3e50; 
    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: #f1c40f; 
    font-weight: bold;
}


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

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


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


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

p.highlight span {
    color: #2c3e50; 
}


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

/
.box {
    background-color: #ecf0f1;
    padding: 20px;
    border: 2px solid #e74c3c; 
    margin: 20px 0;
}


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


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

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


.solidborder {
    border: solid #2c3e50 4px;
    padding: 9px;
}
