/* *
{
    margin: 0!important;
    padding: 0!important;
} */

body
{
    background-color: #fff;
    z-index: 5;
}
/* PRZEŁĄCZNIK MOTYWU */
.switch_nd
{
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    background-color: #aaa;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.switch_nd:hover
{
    cursor: pointer;
}
.hr-space
{
    margin: 40vh 5vw 15vh 5vw;
}

.website-info
{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 20;

    width: 30vw;
    border-radius: 5vw;
    border: 3px solid black;
    padding: 2vw;

    background: #ddd;

    font-size: 13px;
    visibility: visible;
    opacity: 1;
}

.website-info i
{
    font-size: 10px;
}

.website-info:hover
{
    animation: websiteinfo 3s linear forwards;    
}

/* @keyframes websiteinfo
{
    from{
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
} */