#theme-switch {
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 30px;
    background-color: rgba(189, 189, 189, 0.295);
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px;
    position: fixed;
    top: 20px;
    backdrop-filter: blur(10px);
}

#theme-switch img {
    fill: rgb(82, 82, 82);
}

#theme-switch img:last-child {
    display: none;
}

.lightmode #theme-switch img:first-child {
    display: none;
}

.lightmode #theme-switch img:last-child {
    display: block;
}

@media (max-width: 768px) {
#theme-switch {
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 30px;
    background-color: rgba(189, 189, 189, 0.295);
    display: flex;
    justify-content: center;
    align-items: center;
    right: -5px;
    position: relative;
    top: 10px;
    backdrop-filter: blur(10px);
}

}
