@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color-scheme: dark light;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px;
}
img{
    max-width: 100%;
    object-fit: cover;
}

a{
    text-decoration: none;
}
header{
    text-align: center;
}
header h2{
    opacity: 0.5;
}
main{
    display: flex;
    max-width: 900px;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: center;
    
}

main .card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
    min-height: 250px;
    padding: 20px;
}
main .card .imageCard{
    width: 200px;
    display: grid;
    place-content: center;
    padding: 10px;
    flex: 1 1 auto;
}
main .card .btnCard{
    text-align: center;
    padding: 10px;
}
main .card .btnCard h2{
    margin-bottom: 20px;
}
main .card .btnCard a{
    padding: 10px 14px;
    border-radius: 10px;
    background: black;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.37);
    backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
}
main .card .btnCard a:hover{
    background: #02095a;
}