/*body {
    padding: 0px;
    background-image: url("file:///C:/Users/danie/Downloads/Tetraverse%20(1).png");
    background-size: 450px;
    background-repeat: no-repeat;
    background-color: black;
    
}*/


.card {
    background-size: auto 100% !important; /* to avoid bg image overriding image presets */
    background-position: center !important;
    width: 300px;
    height: 300px;
    margin: 10px 10px;
    border-radius: 50px;
    border: solid white 5px; 
    overflow: hidden;
    
}


.card div.desc {
    border-top: 5px solid white;
    border-right: 5px solid white;
    height: 130px;
    margin: 110px -5px 0 0;
    border-top-right-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.card:hover div.desc {
    background: rgba(120, 120, 120, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card span.title {
    color: white;
    font-family: 'Ubuntu', monospace;
    font-weight: 800;
    font-size: 46px;
    letter-spacing: -2px;
    width: auto;
    display: block;
    margin: 15px auto auto;
    text-align: center;
    text-shadow: 0px 4px 16px rgba(255,255,255,0.73);
    white-space: nowrap;
    min-height: 1lh;
    
}

.card span.desctext {
    color: white;
    font-family: 'Ubuntu', monospace;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 3px;
    width: 90%;
    text-align: center;
    text-shadow: 0px 4px 16px rgba(100,100,100,0.7);
    margin-bottom: 15px;
}

#exceed {
    background-position: -100px 0 !important;
}