@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&display=swap');

body{
    background-color: rgb(43, 43, 43);
    margin: 0;
}
*{
    font-family: 'Roboto Slab';
}

a{
    text-decoration: none;
    color: rgb(194, 194, 194);
    transition: all 500ms;
}

a:hover{
    color: rgb(255, 255, 255);
}

li{
    list-style-type: none;
    display: block;
    margin-top: 35px;
    margin-bottom: 35px;
}

h1{
    color: white;
}

ul{
    float: left;
    backdrop-filter: blur(2px) brightness(1.2);
    padding: 15px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    position: fixed;
    z-index: 10;
}

.card{
    width: 200px;
    height: 400px;
    background-color: rgb(58, 58, 58);
    color: rgb(194, 194, 194);
    padding: 10px;
    margin: 20px;
    border-radius: 10px;
    float: left;
    transition: all 500ms;
}

.card:hover{
    transform: translateY(-20px);
}