
.mycard{
    position: relative;

    background-color:rgba(73, 109, 206, 0.418);
    backdrop-filter: blur(3px) ;
    
    border-top: 2px solid rgba(255,255,255, 0.4);
    border-left: 2px solid rgba(255,255,255, 0.3);
    border-radius: 1em;

    box-shadow: 3px 3px 5px rgba(0,0,0,0.5);

    color: rgba(255,255,255, 0.8);
    text-align: justify;
    margin: 1rem;
    padding: 2em;
    text-shadow: 2px 2px 2px rgba(140, 139, 204, 0.418);
}
.mycard h2 {
    font-size: 3rem;
}

.mycard::after {
    content: "Repeater";
    content: attr(tool-tip-data);
    color: white;
    font-size: 1.25em;
    font-weight: bold;
    background-color: rgba(34,70,170,.5);
    position: absolute;
    bottom: 0;
    left: 0;
    padding:.5em;
    padding-top: .25em;
    padding-bottom: .25em;
    border-top-right-radius: 1em;

}
.mycard:hover {
    background-color:rgba(34, 70, 170,.8);
    cursor: pointer;
}

.mycard:hover::after {
    font-size: 1em;
    content: "Click to see details";
}


.bg-container {
    position: relative; /* Container needs relative positioning */
    padding: 20px;
    border: 2px solid rgba(12, 14, 64, 0.207);
    overflow: hidden; /* Keeps background text inside the div */
    border-radius: 1rem;
    background-color: rgba(66, 89, 144, 0.2);
}

.bg-container::before {
    /*content: "GMRS";*/
    content: attr(servName);
    position: absolute; /* Position it absolutely within the container */
    top: 30%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(-15deg); /* Center and rotate for effect */
    font-size: 7em; /* Make it large */
    
    font-weight: 900;
    color: rgba(255, 254, 254, 0.1); /* Faded color with transparency */
    z-index: -1; /* Place it behind the main content */
    pointer-events: none; /* Allows interaction with content on top */
    white-space: nowrap; /* Prevents the text from wrapping */
    
}


.shapeContainer {
    clip-path: path("M 20,0 L 480,0 A 20,20,0,0,1 500,20 L 500,200 A 20,20,0,0,1 480, 220 L 350,220 A 20,20,0,0,0 330,240 L 330,280 A 20,20,0,0,1 310,300 L 20,300 A 20,20,0,0,1 0,280 L 00,20 A 20,20,0,0,1 20,0 Z") ;
}
