@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Mea+Culpa&display=swap');

/* Index and Navbar */

body {
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: white;
}

/* Navigation Menu and Responsiveness */

.navigation-menu {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .navigation-menu {
        display: block
    }
    .menu-hide {
        display: none
    }
}

/* Nav */

.navbar ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar li {
    float: left
}

.navbar li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.navbar li a:hover {
    background-color: rgb(181, 181, 181);
}

/* Icons */

.icons ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.icons li {
    float: left
}

.icons li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.icons li a:hover {
    background-color: rgb(181, 181, 181);
}

/* Faq */

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Cardo", sans-serif;
}

main .mainmain {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 115ch;
    margin-left: 14px;
    margin-right: 14px;
}

footer {
    min-height: 25px
}