/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
}

.logo-right {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

.logo-right img {
    max-width: 100px;
    margin-right: 15px;
}

.logo img {
    max-width: 100px;
    margin-right: 15px;
}

.title h1 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2.1em;
    /* font-weight: 700; */
    /* blueish color: #4898d8; */
    color: #3ac0e3; /* logo aqua */
}

#faq p {
    text-indent: 2em; /* Adjust the indent size as needed */
    margin-bottom: 1em; /* Optional: Adds space between paragraphs */
}
#rules h2, #rules h3 {
    color: #3ac0e3;
}
#faq h2, #faq h3 {
    /* blueish color: #4898d8; */
    color: #f6761d; /* logo orange */
}

/* Ensuring the site title is centered */
header h1 {
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

/* Container */
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sidebar */
.sidebar {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    background-color: #fff;
    /* margin-bottom: 20px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sidebar nav h2, nav h3 {
    /* color: #f6761d; /* orange */
    color: #3ac0e3;
}

.sidebar nav ul {
    list-style: none;
    margin-bottom: 15px;
}

.sidebar nav ul li {
    margin-bottom: 5px;
}

.sidebar nav ul li a {
    text-decoration: none;
    /* color: #007BFF; */
    /* blueish color: #4898d8; */
    color: #3ac0e3; /* logo aqua */
    font-weight: 400;
}

.sidebar nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    flex: 3;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.opening {
    display: block;
    background-color: #593da6;
    color: white;
    padding: 16px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.opening a:link {
	color: lightblue;
}
.opening a:visited {
	color: skyblue;
}
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1em;
}

.faq-item ul {
    margin-left: 40px;
}

/* Footer */
footer {
    /* blueish background-color: #4898d8; */
    background-color: #3ac0e3;
    /* background-color: #333; */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        max-width: 100%;
    }

    main {
        max-width: 100%;
    }
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 900

.playfair-display-400 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p.large {
	font-size: 1.2em;
}
