:root{
    --content-bg-color:linear-gradient(315deg, rgba(255, 255, 255, 0.25) 0%, rgba(145, 145, 145, 0.25) 100%);
    --border-radius:24px;
}

body {
    background:url("/img/background.svg"),linear-gradient(135deg, rgba(255, 117, 250, 0.685) 0%, rgba(90, 169, 230, 0.63) 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode:screen;
    z-index: 0;
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Tahoma, sans-serif;
    color: #fff;
}

.container{
    max-width: 1000px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.header{
    text-align: center;
}

.content{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top:20px;
    justify-content: center;
}

.content a{
    width:calc(33.33% - 15px);
    display: inline-block;
}

.card{
    display: inline-block;
    width:100%;
    padding: 8px;
    height: auto;
    cursor:pointer;
    transition:scale 1s, opacity 1s;
    
}

.content:hover .card {
    opacity: 0.5;
    scale:0.95;
    transition:scale 1s, opacity 1s;
}
.content .card:hover {
    opacity: 1;
    scale:1;
    transition:scale 0.5s, opacity 0.5s;

    
}
.card-image{
    height: 360px;
    background-size:cover;
    background-position: center;
    background-clip: padding-box;
    margin: 0;
    padding: 0;
    border-radius: calc(var(--border-radius) - 8px);
    border:1px solid rgba(255, 255, 255, 0.25)
}

.card a{
    width: 100%;
    height: 100%;
}

.border-5{
    border-color: rgb(221, 171, 255);
}

.card-text{
    color: white;
    margin-bottom: 5px;

}

.footer{
    border-width: 0px;
    margin-top:20px;
    padding: 5px;
    text-align: center;
    color: #fff;
}

.some-block{
    width: fit-content;
    display: inline-block;
}

.some-link{
    height:30px;
    padding:10px;
    filter: drop-shadow( 2px 2px 2px rgba(0, 0, 0, .5));
    transition:1s all;
}

.some:hover .some-link{
    opacity: 0.5;
    transition:0.5s all;
}
.some .some-link:hover{
    opacity: 1;
    scale: 1.5;
    transition:0.5s all;
}
@media only screen and (max-width: 850px) {
    .content a{
    width: calc(50% - 10px);
    }
  }

@media only screen and (max-width: 620px) {
    /* For mobile phones: */
    .container {
    width:calc(100% - 15px);
      padding: 0;
    }
    .content a{
    width: 100%;
    }
  }
h1, h2, h3, h4{
    
    filter: drop-shadow( 2px 2px 2px rgba(0, 0, 0, .5));
}
.glass{
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius);
    background: var(--content-bg-color);
}