*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root {
    --bg-color: #080808;
    --second-bg-color: #131313;
    --text-color: white;
    --main-color: #00f7ff;
    ;
}

html{
    font-size: 60%;
    overflow-x: hidden;
}

body{
    background: var(--bg-color);
    color: var(--text-color);
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4rem 12% 4rem;
    background: rgba(0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.logo{
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.logo:hover{
    transform: scale(1.1);
}

.logo span{
    text-shadow: 0 0 25px var(--main-color);
}

section{
    min-height: 100vh;
    padding: 10rem 12% 10rem;
}

span{
    color: var(--main-color);
}

.logo span{
    color: var(--main-color);
}

p{
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

.faq-info h1{
    font-size: 14px;
    text-align: center;
}

.faq-info h2{
    font-size: 24px;
    text-align: center;
    text-decoration: underline;
}

.faq-info h3{
    font-size: 21px;
    text-align: center;
}

.faq-info h4{
    font-size: 16px;
    text-align: center;
    text-decoration:dotted;
}


.faq-info h5{
    text-align: center;
    font-size: 24px;
    color: var(--main-color);
}

