body{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
    background-image: url(./pexels-eberhard-grossgasteiger-2310713.jpg);
    background-size: cover;
    background-position: center;

}
#navBar{
    border: 1px solid rgba(255,255 ,255, 0.3);
    background: rgba(255,255 ,255, 0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(3px);
    width: 100%;
    padding: 0%;
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0%;
}
#navBar nav a{
    margin-top: 1%;
    margin-bottom: 1%;
    margin-right: 2%;

    text-decoration: none;
    font-size: 97%;
    font-weight: 600;
    color: white;
}
#navBar nav a:hover{
    color: plum;
    cursor: pointer;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}
.cards{
    width: 350px;
    color: white;
    text-align: center;
    padding: 50px 35px;
    margin-top: 15px;
    border: 0.6px solid rgba(255,255 ,255, 0.3);
    background: rgba(255,255 ,255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0 ,0 ,0.1);
    backdrop-filter: blur(3px);
}
.cards img{
    border-radius: 10px;
    transition: transform .9s;
}
.cards img:hover{
    -ms-transform: scale(0.93);
    -webkit-transform: scale(0.93);
    transform: scale(0.93);
}
.cards h2{
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
}
.cards p{
    font-size: 18px;
    margin: 10px auto;
    max-width: 330px;
}
.cards .links img{
    width: 40px;
    border-radius: 50%;
    margin: 10px 5px;
    transition: background 0.5s;
}
.cards .links img:hover{
    background-color: plum;
}
.msg{
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    background-color: white;
    color: plum;
    border-radius: 30px;
    margin: 30px 0px 10px;
    padding: 10px 30px;

}

/* ////////////////////////////////////////////////////////////////////////////////// */
/* MOBILE RESPONSIVENESS//////////////////////////////////////////////////////////// */

/* @media only screen and (max-width:412px){
    /* nav a{
        margin: 10px 5px;
        font-size: 14px;
    } */

    /* .cards{
        padding: 50px 0px;
    } */
/* } */ 



