@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body{
    background-color: #11111b;
    margin: 0;
    font-family: "Outfit", sans-serif;
    text-align: center;
    color: #cdd6f4;

}
.header{
    background-color: #11111b;
    color: #cba6f7;
    display: flex;
    font-size: 24px;
    text-align: left;
}
.header img{
    width: 64px;
    padding: 15px;
}
.banner{
    font-size: 48px;
    line-height: 5px;
    background: url(fun3.gif);
     background-color: #ff00ff; /* Used if the image is unavailable */
    height: 500px; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    overflow: hidden;

}
.banner p{
    font-size: 24px;
}
.bg{
    position: absolute;
    margin: 0;
}

.fun{
    width: 100vw;
    height: 500px;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.693);
    position: absolute;
}
.bannershit{
    z-index: 5;
    position: relative;
    height: 100%;
}
.text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.card {
    width: 256px;
    height: 256px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-content {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.card:hover::before {
    opacity: 1;
}

.card:hover .card-content {
    opacity: 1;
}
.gkmc{
    background-image: url(albums/gkmc.jpg);
}
.cards{
    

    display: grid;
    grid-template-columns: auto auto auto;
}