body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 20px;
    background-image: url(cd.png) ;
    background-size: 200px;
    background-color: black;
    animation: bganim 5s linear infinite forwards;
}
#top{
    animation: woosh 0.5s ease 1 0.1s backwards ;
}
#komunikat{
    animation: woosh 0.5s ease 1 0.2s backwards ;
}
#top,#komunikat,#list{
    justify-content: center;
    display: flex;
    background-color: rgba(169, 169, 169,0.5);
    border-radius: 20px;
    border: 3px solid black;
    margin-bottom: 10px;
    box-shadow: 0px 0px 10px black;
}
#komunikat > h4,#top > h1{
    background-color: darkgray;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
}
#background{
    justify-content: center;
    display: flex;
    padding: 2%;
    animation: woosh 0.5s ease 1 0.4s backwards ;
}
#list{
    width: 67%;
    background-color: rgba(169, 169, 169,0.9);
}
#list > ul {
    list-style-type: none;
    font-weight: bolder;
    padding-left: 0px;
    font-size: 40px;
}
#list > ul > a > li{
    padding: 10px 10px 10px 10px;
    margin: 20px 0px 20px 0px;
    background-color: black;
    border-radius: 20px;
    border: 3px solid black;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px black;
    transition: all 0.2s ease-in-out;
}
#list > ul > a > li > p{
    margin: 0px;
    background-color: rgb(75, 75, 75);
    border-radius: 10px;
    color: white;
    padding: 10px;
}
a{
    text-decoration: none;
}
#list > ul > a > li:hover{
    transform: scale(1.2) ;
    filter: brightness(1.2);
    box-shadow: 5px 5px 15px black;
    transition: all 0.2s ease-in-out;
}
@keyframes bganim {
    0%{
        background-position: 0px 0px;
    }
    100%{
        background-position: 200px 200px;
    }
}
@keyframes woosh{
    0%{
        position: relative ;
        top: 1000px;
    }
    100%{
        position: relative;
        top: 0px ;
    }
}

