body{
    margin: 0%;
    padding: 0%;
}
body{
    background-color: #0a0a0a;
    background: 
        radial-gradient(circle at 1px 1px, #1f1f1f 1px, transparent 0),
        #0a0a0a;
    background-size: 20px 20px;
    height: 100vh;
    width: auto;
    overflow: auto;
}
header{
    background-color: #111111;
    width: 100%;
    height: auto;
}
.logo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    margin-left: 10px;

}
ul{
    list-style:none;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1em;   
    /* border: yellow 2px solid;  */
}
li{
    margin: 5px;
}
a{
    text-decoration: none;
    color: rgb(69, 135, 69);
    transition: 0.3s;
    display: inline-block;
}
a:hover{
    text-decoration: underline;
    color: rgb(81, 228, 81);
    text-shadow: 0 0 8px rgb(81,228,81);
    transform: scale(1.1);
    border: 1px dashed wheat;
    border-radius: 20px;
    padding: 5px;
}

.active{
    color: rgb(187, 21, 33);
    text-decoration:underline rgb(69, 135, 69);
    text-underline-offset: 4px;

}
.active:hover{
    text-decoration: underline rgb(187, 21, 33);
    color: rgb(81, 228, 81);
    text-shadow: 0 0 8px rgb(81,228,81);
}
.highlight{
    display: inline-block;
    color: lightcoral;
    animation: wave 3s infinite alternate;
}
@keyframes wave{
    from{
        /* transform: rotate(-10deg); */
        transform: scale(0.8);
    }
    to{
        /* transform: rotate(10deg); */
        transform: scale(1.0);
    }
    
}
.typing{
    color: wheat;
}
.cta-button{
    border: 2px dotted rgb(48, 47, 46);
    border-radius: 20px;
    color: rgb(17, 255, 0);
    margin-left: 50px;
    transition: 1.3s;
    padding: 5px;
    animation: swipe 2s ease-in-out 2 alternate;
}
@keyframes swipe {
    from{
        transform: translateX(initial);
    }
    to{
        transform: translateX(30px);
    }
   
}
.cta-button:hover{
    background-color: #3f3f3f;
    color: rgb(3, 255, 3);
    text-shadow: 0 0 10px rgb(114, 232, 114);
    animation-play-state: paused;
}
.cta-button span {
    display: inline-block;
    transition: 0.5s;
}

.cta-button:hover span {
    transform: scale(1.2);
}
h1{
    color: wheat
}
p{
    color: rgb(216, 172, 88);
    font-size: 1em;
}
.left{
    padding-left: 50px;
    border: 1px solid white;
}
.right{
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2{
    color: white;
    text-shadow: cadetblue 0 0 8px;
}
.overview-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-right: 1em;
}

.overview-cards{
    background: #111;
    border: 1px solid rgba(81, 228, 81, 0.2);
    box-shadow: 0 0 15px rgba(81, 228, 81, 0.1);
    transition: 0.5s;
}

.overview-cards:hover{
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(81, 228, 81, 0.3);
}
.over-list{
    list-style:disc;
    display: flex;
    flex-direction:column ;
    gap: 1em;
    list-style-position:inside;
}
h3{
    color: wheat;
    text-align: center;
}
.copyright{
    color: white;
    text-align: end;
    justify-self: end;
    width: fit-content;
    border: white 1px solid;
    font-size: 0.8em;
}
