/*Custom variables to test custom fonts*/
.custom_font1 {
    font-family: "Roboto Flex", sans-serif;
}

.custom_font2 {
    font-family: "Funnel Sans", sans-serif;
}

.custom_font3 {
    font-family: "Ubuntu", sans-serif;
}

.custom_font4 {
    font-family: "Geist Mono", monospace;
}

.custom_font5 {
    font-family: "Open Sans", sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    aside {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
}

/* aside containing buttons */
aside {
    margin: 20px;
    padding: 15px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between elements */
}

aside h3 {
    margin: 0;
    font-size: 1.2em;
    white-space: nowrap; /* Prevent wrapping */
}

aside a {
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    white-space: nowrap; /* Prevent wrapping */
}

aside a:hover {
    background-color: #0056b3;
}

aside a:active {
    background-color: #003f7f;
}

li s {
    color: #6b6b6b;
}

figure figcaption {
    text-align: center;
    display:block;
}


a {
    color: #0073e6;
    text-decoration: none;
}