
.title-logo {
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 11.2px;
}

.title-text {
    font-weight: unset;
    font-size: 42px;
    color: white;
}

.title-author {
    font-size: 24px;
}
a{
    color: #f2a8ff;
}

/*.main-nav{*/
/*    width:100%;*/
/*}*/

/*.nav-left{*/
/*    width:40%; */
/*    float:left;*/
/*}*/

/*.nav-right{*/
/*    width:60%; */
/*    float:right;*/
/*}*/

.title {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #531a99;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    text-decoration: none;
}

#banner {
    height: 300px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 20px 15px 20px;
}

.banner-text {
    font-size: 3rem;
    /* animated gradient */
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 15s ease infinite;
    /* use dark purple as the first color */
    background-image: linear-gradient(45deg, #8a2bff, #e867ff);
    text-align: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body {
    margin: 0;
}

html {
    font-family: "Ubuntu Mono", monospace;
    background-color: black;
    scroll-behavior: smooth;
    color: white;
}

#content {
    margin: 0 10%;
}

.iconText{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.Q{
    font-size: 18px;
}

.footer-content{
    background: #1a1a1a;
    margin: 0;
    padding: 10px;
}  

.button-logo{
    width: 30px;
    height: 30px;
}

h2 {
    /* animated gradient */
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 15s ease infinite;
    /* use dark purple as the first color */
    background-image: linear-gradient(45deg, #8a2bff, #e867ff);
    font-size: 1.5em;
        margin-bottom: 13px;
}

h3 {
    margin-bottom: 13px;
    text-decoration: underline;
}

h1{
    font-size: 3rem;
    margin: 10px 0px;
    margin-bottom:13px;
}

.banner-links {
    margin-top: 32px;
}

.banner-link {
    color: white;
    text-decoration: none;
    /* animated gradient background with white text, use border radius too */
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    /* use dark purple as the first color */
    background-image: linear-gradient(45deg, #8a2bff, #e867ff);
    margin: 0px;
    border-radius: 8px;
    padding: 9px;
    font-size: 15px;
    font-family: "Ubuntu Mono", monospace;
}

.banner-link-disabled {
    opacity: 0.5;
}

.faq-answer {
    margin-bottom: 64px;
}

#footer {
    text-align: center;
}

.footer-link {
    color: white;
    text-decoration: none;
}