#line{
    border: 2px solid var(--box-shadow-weich);
    filter: blur(4px);
    width: 100%;
}

#footer{
    background: var(--footer);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

#footer-name{
    font-size: 20px;
    display: flex;
    justify-content: center;
}

#footer-moto{
    font-size: 12px;
    display: flex;
    justify-content: center;
}

#footer_buttons{
    display: flex;
    justify-content: center;
}

.footer_button{
    font-size: 10px;
    text-align: center;
    background: var(--footer);
    color: var(--accent);
    box-shadow: 0 0 18px var(--box-shadow-weich);
    border: 0;
    border-radius: 10px;
    width: 100px;
    height: 20px;
    margin: 15px 30px;
}

.footer_button:hover{
    background-color: var(--laser);
    cursor: pointer;
}