@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: Poppins;
    margin: 0;
    background-color: #010101;
    color: #eee;
}

svg{
    width: 25px;
}

header{
    width: 1200px;
    max-width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    text-decoration: none;
}
header .logo{
    font-weight: bold;
}

.item {
    transition: opacity 0.5s ease-in-out;
}

.thumbnail {
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.thumbnail.active {
    filter: brightness(100%);
}

.thumbnail.inactive {
    filter: brightness(50%);
}

.item > .bg-gradient-to-t {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.item .z-10 {
    z-index: 10;
}

