html{
    background:linear-gradient(140deg, rgba(131,39,243,1) 5%, rgba(129,38,241,1) 6%, rgba(138,43,255,1) 9%, rgba(125,36,234,1) 9%, rgba(120,34,227,1) 12%, rgba(105,27,203,1) 22%, rgba(99,24,193,1) 26%, rgba(87,18,174,1) 34%, rgba(81,15,164,1) 38%, rgba(74,11,152,1) 43%, rgba(65,7,138,1) 59%, rgba(0,0,0,1) 90%, rgba(90,19,179,1) 3200%);
}
.title-logo {
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 11.2px;
    box-shadow: 0px 0px 3px 6px #9a12e0;
}

.title-text {
    font-weight: unset;
    font-size: 47px;
    color: white;
    line-height: 21px;
}

.title-author {
    font-size: 24px;
}

.title {
    display: flex;
    flex-direction: row;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    text-decoration: none;
    justify-content: space-between;
    padding-top: 28px;
    margin: 0 5%;
}

#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;
    height: 100vh;

    
}

html {
    font-family: "Ubuntu Mono", monospace;
    /* background-color: black; */
    scroll-behavior: smooth;
    color: white;
}

#content {
    /* margin: 0 5%; */
    margin: 31px 10px 0 5%;
    line-height: 21px;
}

.iconText{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.Q{
    font-size: 18px;
}

.footer-content{
    margin: 0;
    margin: 10px 0 0 30px;
}  

.button-logo{
    width: 30px;
    height: 30px;
}

h2 {
    margin-top: 0px;
    /* 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);
}

.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;
}

.banner-link-disabled {
    opacity: 0.5;
}

.faq-answer {
    margin-bottom: 64px;
}

#footer {
    text-align: left;
    position: fixed;
  bottom: 48px;
  left: 0;
  width: 300px;

}

.footer-link {
    color: white;
    text-decoration: none;
}

hr{
    width: 90%;
    height: 2px;
    background: white;
    margin-left: 0px;
}

p{
    margin: 0px;
}