@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Exo:100,200,400');
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Raleway:wght@400;500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins;
}
body
{
    background-image: url(img/E7Naj5o.jpg);
    background-size: 2000px;
}
header
{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}
header .brand
{
    color: mediumvioletred;
    font-size: 1.6em;
    font-weight: 800;
    text-decoration: none;
}
header .navigation
{
    position: relative;
}
header .navigation .navigation-items a
{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 40px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a::before
{
    content: '';
    position: absolute;
    background: rgb(255, 0, 255);
    width: 0;
    height: 2.9px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before
{
    width: 100%;
}
.card
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 105px 30px;
    margin-top: 190px;
    background: white;
    -webkit-backdrop-filter: blur(8px);  /* Safari 9+ */
    backdrop-filter: blur(8px);
    border-radius: 30px;
    border: 5px solid #fff;
    background-color: rgba(255, 255, 255, 0.25); /* Just adjust the color or opacity to make the text pop! */
    box-shadow: inset 0 0 0 200px rgba(0, 0, 0, 0.08);
    width: 340px;
    height: 310px;
}
.card img
{
    border: 5px solid rgb(255, 0, 144);
    border-radius: 50%;
    max-width: 120px;
}
.card h2
{
    text-align: center;
    color: aqua;
}
.card h3
{
    text-align: center;
    margin-top: 2px;
    color: #ddd;
    font-weight: 200;
}
.card p
{
    text-align: center;
}
.card button
{
   margin: 10px -35px;
   border-radius: 30px;
   background: rgb(143, 55, 167);
   color: #fff;
   font-size: 20px;
   width: 200px;
   height: 50px;
   transition: .4s;
}
.card button:hover
{
    background: rgb(255, 0, 115);
}
