/* Reset some default styles */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #ebd6fa;
    color: #333;   
}
.navbar{
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
}
.logo{
    font-size: 1.5em;
    font-weight: bold;
}
.nav-links{
    list-style: none;
    display: flex;
}
.nav-links a{
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s ease;
}
.nav-links a:hover,
.nav-links a:active{
    background-color: #555;
    border-radius: 4px;
}
/* Page content */

.hero, .context{
    padding: 60px 20px;
    text-align: center;   
}
footer{
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
table, td, th {
    border: 1px solid black;
    padding: 10px;
}
section {
    margin: 20px;
    text-align: left;
    padding: 40px;
}
.catinfo h2{
    text-align: center;
    font-family: "Pacifico", cursive;
}
iframe{
    display: block;
    margin: 20px auto 0 auto;
}
.content{
    text-align: left;
}
.hero h1{
    font-family: "Pacifico", cursive;

}