:root{
    font-family: 'Roboto', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #e0e5ec;
    
}

.container {
    width: 380px;
    height: 80vh;
    box-shadow: 3px 3px 3px #b9bfd5, -3px -3px 3px #fafafa;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

/*animation  */
.card {
    position: relative;
    width: 200px;
    height: 200px;
    background: #e0e5ec;
    border-radius: 50%;
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}
  
  .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 190px;
    height: 190px;
    z-index: 2;
    background: #e0e5ec;
    backdrop-filter: blur(24px);
    border-radius: 50%;
    overflow: hidden;
    outline: 2px solid white;
  }
  .bg img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #1385b0;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 5s infinite ease;
  }
  
  @keyframes blob-bounce {
    0% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  
    25% {
      transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }
  
    50% {
      transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }
  
    75% {
      transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }
  
    100% {
      transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
  }
  
/* animation ends */

.content {
    width: 90%;
    height: auto;
}

.content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style-type: none;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.content ul li {
    width: auto;
}

.content ul li a {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 3px 3px 3px #b9bfd5, -3px -3px 3px #fafafa;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 5px;
    text-decoration: none;
    text-align: center;
    margin: 0;
}

.content ul li a p {
    margin: 0;
}

.content ul li a img {
    width: 30px;
}

.buttons {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
}

.call {
    display: flex;
    width: 70%;
    height: 55px;
    border: none;
    text-decoration: none;
    color: black;
    font-weight: bold;
    gap: 20px;
    border-radius: 30px;
    background: #e0e5ec;
    box-shadow: 3px 3px 3px #b9bfd5, -3px -3px 3px #fafafa;
    align-items: center;
    justify-content: center;
}
.icon{
    width: 40px;
    height: 40px;
    /* padding: 5px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #e0e5ec;
    box-shadow: 3px 3px 3px #b9bfd5, -3px -3px 3px #fafafa;
}
.call img{
    width: 20px;
}
.footer{
    font-size: 14px;
}

@media screen and (max-width:400px) {
    .container {
        height: 100vh;
    }

}
@media screen and (max-height:800px) {
    .container {
        width: 300px;
        height: 95vh;
        box-shadow: 3px 3px 3px #b9bfd5, -3px -3px 3px #fafafa;
        border-radius: 12px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }
    .content ul li a {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        box-shadow: 3px 3px 3px #b9bfd5, -3px -3px 3px #fafafa;
        color: black;
        display: flex;
        font-size: 12px;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        padding: 5px;
        text-decoration: none;
        text-align: center;
        margin: 0;
    }
    .buttons {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    .icon {
        width: 30px;
        height: 30px;
        /* padding: 5px; */
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: #e0e5ec;
        box-shadow: 3px 3px 3px #b9bfd5, -3px -3px 3px #fafafa;
    }
    .call img {
        width: 15px;
    }
    .footer{
        font-size: 12px;
    }
}