/* text-decoration-style: wavy; */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --link-color: #a13885;
    --link-hover-color: #3f3f3f;
    --name-color: rgb(88, 55, 81);
    --footer-bg-color: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s ease;
}

body.dark-mode {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --link-color: #e687d1;
    --link-hover-color: #cccccc;
    --name-color: rgb(200, 160, 190);
    --footer-bg-color: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    font-family: VT323;
}

.dark-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
}

.intro {
    font-size: 50px;
    padding-left: 30px;
    padding-top: 5px;
}

.projects, .research {
    padding-left: 30px;
    padding-top: 15px;
    font-size: 32px;
}

.blogs {
    padding-top: 15px;
}

.about-me {
    padding-left: 30px;
    padding-top: 15px;
    font-size: 26px;
}

.introp, .intror, .introb {
    text-decoration: underline;
}

.clgnotes {
    font-size: 29px;
    padding-top: 20px;
    text-decoration: underline;
}

.pr, .rc, .bc {
    padding-top: 7px;
    font-size: 25px;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
}

.pr a, .rc a, .bc a {
    color: var(--link-color);
    text-decoration: none;
}

.pr a:hover, .rc a:hover, .bc a:hover {
    color: var(--link-hover-color);
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--footer-bg-color);
    padding: 15px 0;
    text-align: center;
    font-size: 25px;
}

footer a {
    color: var(--link-color);
    background-color: transparent;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    color: var(--link-hover-color);
}

a, .pr a, .rc a, .bc a, footer a, .name a {
    transition: color 0.5s ease;
}

footer {
    transition: background-color 0.5s ease;
}


.name a {
    color: var(--name-color);
    text-decoration: none;
}

.descl{
    padding-bottom: 100px;
}

.desc{
    padding-bottom: 5px;
}

.name a{
    color:rgb(88, 55, 81);
    text-decoration: none;
}