.window-content{
    padding:25px;
}

.collection-text{

    margin-top:10px;
    margin-bottom:30px;

    font-size:1.45rem;

    text-align:center;
}

.collection-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;
}

.collection-card{

    background:#ffffff;

    border:2px solid white;

    outline:2px solid #8a78ff;

    padding:20px;

    text-align:center;

    transition:.25s;

    box-shadow:
    0 0 8px rgba(138,120,255,.3);
}

.collection-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 15px rgba(138,120,255,.5);
}

.collection-card h3{

    color:#5c3cfd;

    margin-bottom:15px;

    font-size:2rem;
}

.collection-card img{

    width:100%;

    max-width:170px;

    aspect-ratio:1;

    object-fit:cover;

    margin:auto;

    display:block;

    image-rendering:auto;
}

.counter{

    margin:20px 0;

    font-size:1.5rem;
}

.enter-button{

    display:inline-block;

    padding:10px 20px;

    text-decoration:none;

    color:#5c3cfd;

    background:#85cddb;

    border:2px solid white;

    outline:2px solid #8a78ff;

    transition:.2s;
}

.enter-button:hover{

    background:white;
}