/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Sidebar styles */
.sidebar {
    width: 200px;
    background-color: #000; /* Black background */
    position: fixed;
    height: 100%;
    padding-top: 20px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    padding: 10px;
    text-align: center;
}

.sidebar ul li a {
    color: white; /* White text */
    text-decoration: none; /* No underline by default */
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.sidebar ul li a:hover {
    text-decoration: underline; /* Keep underline effect */
}

/* Content styles */
.content {
    margin-left: 220px; /* Offset for sidebar */
    padding: 20px;
    display: flex;
    flex-wrap: wrap; /* Allow the boxes to wrap */
    gap: 20px; /* Space between the boxes */
}

h1 {
    font-size: 2em;
    color: #333;
    width: 100%; /* Ensure the title takes up full width */
}

p {
    font-size: 1.2em;
    color: #555;
}

/* Box Class with Green Buttons */
.box {
    background-color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

.box button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-end;
}

.box button:hover {
    background-color: #45a049;
}

.myrow {
    flex-direction: row;
    display: flex;
    width: 100%;
}

.mycolumn {
    flex-direction: column;
    display: flex;
    flex: 1;
}

h2, h3 {
    color: #333;
}

/* Additional content styling */
.image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

.fact-file {
    background-color: #e7f3e7;
    padding: 1em;
    margin: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* YouTube Logo */
.youtube-link {
    position: fixed;
    top: 20px;
    right: 20px;
    display: inline-block;
}

.youtube-link img {
    width: 250px;
    height: 120px;
    cursor: pointer;
    border-radius: 10px;
    background-color: white;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.youtube-link img:hover {
    background-color: #f00; /* YouTube red */
}

/* Discord Widget */
.discord-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.learn-more {
    display: inline-block;
    padding: 0.5em 1em;
    margin: 2em;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}

.learn-more:hover {
    background-color: #45a049;
}
