*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body
{
    background-color: #eee;
}
.container
{
    position: relative;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.card
{
    position: absolute;
    top: 50%;
    left: 50%;
    height: 500px;
    width: 900px;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem, 2.3rem;
    border-radius: 30px;
    box-shadow: -12px -12px 12px 0 rgba(255,255,255,0.4),
    12px 12px 12px 0 rgba(0,0,0, 0.05); 
}
.icon
{
    width: 130px;
    height: 130px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow:  -9px -9px 9px 0 rgba(255, 255, 255, 0.4),
    9px 9px 9px 0 rgba(0,0,0, 0.05);
    background: linear-gradient(120deg,rgb(228,228,228),#fbfbfb);
}
img
{
    width: 85%;
    border-radius: 50%;
}
h1
{
    color: #00cec9;
    font-size: 2.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    margin: 0.7rem;
}
p
{
    color: #555;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4rem;
    margin-left: 15px;
    margin-right: 10px;
}
.btn
{
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 150px;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    
    color: #00cec9;
    width: 180px;
    height: 50px;
    letter-spacing: 0.5px;
    border-radius: 25px;
    box-shadow: inset -9px -9px 9px 0 rgba(255,255,255,0.4),
    inset 9px 9px 9px 0 rgba(0,0,0, 0.05);
}
.btn:hover
{
    box-shadow: inset 8px 8px 8px 0 rgba(1, 255, 221, 0.4),
    inset 9px 9px 9px 0 rgba(0,0,0, 0.05);
}
.square, .circle
{
    position: absolute;
    width: 250px;
    height: 250px;
}
.square:after, .circle:after
{
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.square
{
    border-radius: 10px;
    box-shadow: -9px 0px 9px 0 rgba(255,255,255,0.4),
    9px 0px 9px 0 rgba(0,0,0, 0.05);
    transform: rotate(45deg);
}
.square:after
{
    border-radius: 10px;
    box-shadow: inset -9px 0px 9px 0 rgba(255,255,255,0.4),
    inset 9px 0px 9px 0 rgba(0,0,0, 0.05);
}
.circle
{
    border-radius: 50%;
}
.circle:after
{
    border-radius: 10px;
    box-shadow: inset -9px -9px 9px 0 rgba(255,255,255,0.4),
    inset 9px 9px 9px 0 rgba(0,0,0, 0.05);
}
.square.one
{
    top: -5%;
    left: -5%;
}
.circle.one
{
    top:-5%;
    right: -5%;
}
.square.two
{
    bottom: -5%;
    right: -5%;
}
.circle.two
{
    bottom:-5%;
    left: -5%;
}
@media screen and (max-width: 1500px)
{
    .card
    {
        width: 800px;
    }
}
@media screen and (max-width: 1000px)
{
    .square, .circle
    {
        width: 200px;
        height: 200px;
    }
    .card
    {
        width: 550px;
    }
    
}

@media screen and (max-width: 850px)
{
    .square, .circle
    {
        width: 150px;
        height: 150px;
    }
    .card
    {
        max-width: 480px;
    }
    .icon
    {
        width: 110px;
        height: 110px;
    }
    h1
    {
        font-size: 2rem;
    }
    p
    {
        font-size:1rem;
        margin-left: 15px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 650px)
{
    .square, .circle
    {
        display: none;
    }
    .btn
    {
        width: 130px;
        margin-top: 120px;
    }
    .card
    {
        max-width: 300px;
    }
    
}